Skip to content

Instantly share code, notes, and snippets.

View elisim's full-sized avatar
:octocat:
Deep Learning

Eli Simhayev elisim

:octocat:
Deep Learning
View GitHub Profile
@elisim
elisim / fib.py
Last active September 14, 2019 17:22
fibonacci with memoization in python
# Usage: python fib.py <number>
import sys
cache = {}
def main():
verbose = '-v' in sys.argv
n = int(sys.argv[1])
for i in range(n):