1
vote
What is your preferred pastime programming project?
I work on various website projects, usually backend stuff and some kinds of front-end widgets. I lose focus quite fast and nearly all of my stuff never goes out of development.
The projects …
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):
…
