I just started Python and I\'ve got no idea what memoization is and how to use it. Also, may I have a simplified example?
cache = {} def fib(n): if n <= 1: return n else: if n not in cache: cache[n] = fib(n-1) + fib(n-2) return cache[n]