Showing posts with label udacity course. Show all posts
Showing posts with label udacity course. Show all posts

Monday, March 26, 2012

Memoization

Memoization is a way to make code run faster by saving
previously computed results. Instead of needing to recompute the value of an
expression, a memoized computation first looks for the value in a cache of pre-
computed values. (caching)