diff options
Diffstat (limited to 'Lab1/Lab1/helpers.h')
| -rw-r--r-- | Lab1/Lab1/helpers.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Lab1/Lab1/helpers.h b/Lab1/Lab1/helpers.h index 4c08c11..d30b69b 100644 --- a/Lab1/Lab1/helpers.h +++ b/Lab1/Lab1/helpers.h @@ -16,4 +16,14 @@ void Print(const std::vector<int>& myVector); void Print(const std::list<int>& myList); + +void Fibonacci(int(&cArray)[SIZE]); + +void Fibonacci(std::array<int, SIZE>& stdArray); + +void Fibonacci(std::vector<int>& myVector); + +void Fibonacci(std::list<int>& myList); + + #endif
\ No newline at end of file |