1
vote
What’s your favorite implementation of producing the fibonacci sequence?
Python with memoization:
class memoize:
# class as decorator
def __init__(self, function):
self.function = function
self.memoized = {}
def __call__(self, *args):
…
