Introduction to Dynamic Programming

Understand the concepts of dynamic programming and how you can identify the problems that can be solved using this approach.

Welcome to the first lesson on dynamic programming. We will be learning how to identify the dynamic programming problems and also solve some of the most frequently asked problems in the interviews.

Those who cannot remember the past are condemned to repeat it.

Dynamic programming is all about remembering answers to the subproblems that you’ve already solved ​and not solving them again.

Where do we need dynamic programming?

If you are given a problem that can be broken down into smaller subproblems, which can be further be broken into smaller ones, and if you manage to find out that there are some overlapping subproblems, you’ve encountered a DP problem.

The core idea of dynamic programming is to avoid repeated work by remembering partial results.

Level up your interview prep. Join Educative to access 70+ hands-on prep courses.