Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save aershov24/6cd909cd0d5c03ff00af1b5c9f847a93 to your computer and use it in GitHub Desktop.
Markdium-14 Fibonacci Interview Questions (SOLVED) To Brush Before Coding Interview
def F(n):
if n == 0: return 0
elif n == 1: return 1
else: return F(n-1)+F(n-2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment