Skip to content

Instantly share code, notes, and snippets.

@ledovsky
Last active December 27, 2015 00:09
Show Gist options
  • Save ledovsky/7235826 to your computer and use it in GitHub Desktop.
Save ledovsky/7235826 to your computer and use it in GitHub Desktop.
Memorization
"""
Мемоизация. Не зависит от аргументов.
"""
def _f(*args, **kwargs):
if not hasattr(_f, "_retval"):
_f._retval = f(*args, **kwargs)
return _f._retval
return _f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment