...

/

Challenge 3: Yield Fibonacci Sequence From 1st to Nth Number

Challenge 3: Yield Fibonacci Sequence From 1st to Nth Number

Practice an exercise on generators to return a sequence of fibonacci numbers.

Problem Statement

Create a generator to return the Fibonacci sequence starting from the first element up to n.

The ...