Skip to content

Instantly share code, notes, and snippets.

@yakkomajuri
Created July 13, 2020 20:06
Show Gist options
  • Save yakkomajuri/b82e1041a495dbea65b7413a4e72e009 to your computer and use it in GitHub Desktop.
Save yakkomajuri/b82e1041a495dbea65b7413a4e72e009 to your computer and use it in GitHub Desktop.
def fibonacci(n):
if n <= 1:
return n
return fibonacci(n-1) + fibonacci(n-2)
print(fibonacci(40))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment