grokking-algorithms/chapter11/README.md

7 lines
252 B
Markdown
Raw Normal View History

2024-01-19 17:21:42 +00:00
# Dynamic Programming
A programming technique for decomposing a problem into smaller discrete subproblems.
- Useful when trying to optimize something given a constraint.
2024-01-19 17:23:09 +00:00
- Example, items in a knapsack of size W that gives the greatest value.