Fibonacci Finder
Description:
Leonardo Fibonacci was an italian mathmatician, considered by some "the most talented western mathmatician of the Middle Ages." In 1202 Liber Abaci named a special number sequence after him giving us the Fibonacci Numbers!
In the Fibonacci Sequence each number is the sum of the two previous numbers. Starting at zero it begins: 0 1 1 2 3 5 8 13 21...
In this Kata you will create a function that returns an array of Fibonacci numbers. Your function will take 1 argument that will be the length of the array or in other words the number of Fibonacci Numbers to return.
Arguments will only be positive integers with no special or falsey values. Your array should begin with 0.
Enjoy and now you can sound smart if anyone asks you about Fibonacci!
Similar Kata:
Stats:
Created | Jun 26, 2014 |
Warriors Trained | 13 |
Total Skips | 1 |
Total Code Submissions | 94 |
Total Times Completed | 2 |
JavaScript Completions | 2 |
Total Stars | 0 |
% of votes with a positive feedback rating | 0% of 1 |
Total "Very Satisfied" Votes | 0 |
Total "Somewhat Satisfied" Votes | 0 |
Total "Not Satisfied" Votes | 2 |