Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save aershov24/4f5c9deaeea5e1f8a278a04af86e19b6 to your computer and use it in GitHub Desktop.
Markdium-14 Fibonacci Interview Questions (SOLVED) To Brush Before Coding Interview
function fibs(n){
let [a, b] = [0, 1]
while (n > 0){
[a, b] = [b, a + b]
n -= 1
}
return a
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment