Solution Review: Implementing the Fibonacci Series
This review explains the solution for the "Fibonacci series" problem.
We'll cover the following...
We'll cover the following...
Solution
Explanation
The first thing we need to do is handle all the edge cases. At line 6, if n is less than 1, we simply have to return -1.
From ...