Skip to content

Instantly share code, notes, and snippets.

@chipbuster
Last active July 21, 2018 00:41
Show Gist options
  • Save chipbuster/2bdda638cd3ae4293ff63ce2197f6f9b to your computer and use it in GitHub Desktop.
Save chipbuster/2bdda638cd3ae4293ff63ce2197f6f9b to your computer and use it in GitHub Desktop.
What does it doooooo?
#!/usr/bin/env python3
def g(f):
q = {}
def new(x):
if x not in q:
q[x] = f(x)
return q[x]
return new
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment