Memoization

Learn about memoization in Python.

Memoization is a technique used to speed up function calls by caching their results. The results can be cached only if the function is pure, meaning that it has no side effects or outputs and that it does not depend on any global state.

Memoizing sin function

A trivial function that can be memoized is the sine function sin.

Get hands-on with 1200+ tech skills courses.