Created
October 13, 2020 05:28
-
-
Save aershov24/4bf4d0c7dd6fea739f9e0a2e1b9ab42d 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, a = 0, b = 1){ | |
| if (n > 0) { | |
| return fib(n - 1, b, a + b) | |
| } | |
| return a | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment