Skip to content

Instantly share code, notes, and snippets.

@michaelsoltys
Created April 5, 2023 13:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michaelsoltys/52e0b78ec935a84f3d1a7f9bf694e364 to your computer and use it in GitHub Desktop.
Save michaelsoltys/52e0b78ec935a84f3d1a7f9bf694e364 to your computer and use it in GitHub Desktop.
def fib(n):
if n == 0:
return 0
elif n == 1:
return 1
else:
return fib(n-1) + fib(n-2)
print(fib(10))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment