Memoization Decorator
Recently I had the opportunity to give a short 10 min presentation on Memoization Decorator at our local UtahPython Users Group meeting. Memoization: Everytime a function is called, save the results in a cache (map). Next time the function is called with the exact same args, return the value from the cache instead of running the function. The code for memoization decorator for python is here: http://wiki....