Created
October 13, 2020 05:28
-
-
Save aershov24/c1a397eab9a9a87c9d54f9f4f7198135 to your computer and use it in GitHub Desktop.
Markdium-14 Fibonacci Interview Questions (SOLVED) To Brush Before Coding Interview
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function fib(n){ | |
| let arr = [0, 1]; | |
| for (let i = 2; i < n + 1; i++){ | |
| arr.push(arr[i - 2] + arr[i -1]) | |
| } | |
| return arr[n] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment