Skip to content

Instantly share code, notes, and snippets.

@deadPix3l
Last active July 8, 2021 19:05
Show Gist options
  • Save deadPix3l/d99529d6f520f5547fa9df9b68af4858 to your computer and use it in GitHub Desktop.
Save deadPix3l/d99529d6f520f5547fa9df9b68af4858 to your computer and use it in GitHub Desktop.
def fib(n):
if n<=1:
return 1
return fib(n-1) + fib(n-2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment