Kuwarsaab / git-learn

Hactoberfest-2024
MIT License
6 stars 55 forks source link

added a folder for dynamic programming algorithms #99

Closed Ghruank closed 3 weeks ago

Ghruank commented 4 weeks ago

created a folder for some dynamic programming algorithms. Dynamic Programming (DP) is an optimization technique used to solve problems with overlapping subproblems and optimal substructure properties. DP breaks down complex problems into smaller subproblems that repeat. Instead of recalculating each subproblem, it stores (or “memoizes”) solutions to avoid redundant calculations.