What is Memoization? Memoization is an optimization technique used to speed up computer programs by storing the results of expensive function calls and returning the cached result when the same inputs occur again. Essentially, it allows a computer to "remember" the answer to a specific problem ...
Source: [Dev.to](https://dev.to/saurav_tb_pandey/stop-recalculating-an-intro-to-memoization-3ac3)