Skip to content

Instantly share code, notes, and snippets.

@att288
Created May 19, 2019 02:19
Show Gist options
  • Save att288/c8ff5183425aee84e123600c6eec6705 to your computer and use it in GitHub Desktop.
Save att288/c8ff5183425aee84e123600c6eec6705 to your computer and use it in GitHub Desktop.
# DP
fib_seq = [0, 1]
def fib(n):
if n == 0:
return 0
if n == 1:
return 1
if len(fib_seq) == n-1:
fib_seq.append(fib(n-1))
return fib_seq[n-1] + fib_seq[n-2]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment