...

/

Challenge 3: Return Sequence of Fibonacci Numbers

Challenge 3: Return Sequence of Fibonacci Numbers

Use iterators to return a list containing the Fibonacci sequence.

Problem Statement

Edit the following iterator class to return the Fibonacci sequence from the first element up to the nth element.

The ...