Skip to content

Instantly share code, notes, and snippets.

@aershov24
Created October 13, 2020 05:28
Show Gist options
  • Select an option

  • Save aershov24/bc96e57440c93133fb4c579b0bf75781 to your computer and use it in GitHub Desktop.

Select an option

Save aershov24/bc96e57440c93133fb4c579b0bf75781 to your computer and use it in GitHub Desktop.
Markdium-14 Fibonacci Interview Questions (SOLVED) To Brush Before Coding Interview
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