Skip to content

Instantly share code, notes, and snippets.

@fmasanori
Created February 12, 2013 12:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save fmasanori/4762654 to your computer and use it in GitHub Desktop.
Save fmasanori/4762654 to your computer and use it in GitHub Desktop.
Fibonacci Recursivo com Cache
from functools import lru_cache
@lru_cache(maxsize=None)
def fib(n):
if n <= 2:
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