Skip to content

Latest commit

 

History

History
4 lines (3 loc) · 162 Bytes

File metadata and controls

4 lines (3 loc) · 162 Bytes

Write a function make_fibonacci(n: int) -> List[int] which generates a list of n Fibonacci numbers.

For example:

  • make_fibonacci(6) → [0, 1, 1, 2, 3, 5]