Created
May 19, 2019 02:19
-
-
Save att288/c8ff5183425aee84e123600c6eec6705 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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