2021-06-09 20:31:45 +02:00
# fibonacci
2020-07-05 18:29:17 +02:00
2020-09-13 00:15:21 +02:00
Created by [@Divlo ](https://github.com/Divlo ) on 5 July 2020.
2020-07-05 18:29:17 +02:00
2020-12-09 12:42:12 +01:00
## Instructions
2020-07-05 18:29:17 +02:00
2020-11-15 10:56:27 +01:00
The function should return an array of fibonacci numbers. The function takes a `number` as an argument to decide how many number of elements to produce.
2020-07-05 18:47:38 +02:00
2023-01-05 18:34:25 +01:00
**Note:** The Fibonacci Sequence is the series of numbers: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, ... Each subsequent number is the sum of the previous two.
2020-07-05 18:29:17 +02:00
2020-12-09 12:42:12 +01:00
## Examples
2020-07-05 18:29:17 +02:00
2021-06-09 20:31:45 +02:00
See the `test` folder for examples of input/output.