DEV Community

Paolo Ventura
Paolo Ventura

Posted on

100 algos in 100 days (Day 21)

[05/10]

An introduction to Dynamic programming.

Recursion

Memoization - This can really help make recursion efficient

Bottom Up - Avoids building up the call stack and uses a dS to store possible information.

Top comments (0)