Skip to content

Instantly share code, notes, and snippets.

@horiajurcut
Created October 12, 2013 14:42
Show Gist options
  • Save horiajurcut/6950706 to your computer and use it in GitHub Desktop.
Save horiajurcut/6950706 to your computer and use it in GitHub Desktop.
@memo
def fib(i):
if i < 2:
return 1
return fib(i-1) + fib(i-2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment