add some notes

This commit is contained in:
2024-01-19 17:21:42 +00:00
parent 0f52cf0f75
commit 1da4a16ec8
5 changed files with 23 additions and 1 deletions

6
chapter11/README.md Normal file
View File

@@ -0,0 +1,6 @@
# Dynamic Programming
A programming technique for decomposing a problem into smaller discrete subproblems.
- Useful when trying to optimize something given a constraint.
- Example, items in a knapsack of size W that gives the greates value.