You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-1
Original file line number
Diff line number
Diff line change
@@ -208,4 +208,9 @@ Open-sourced software licensed under the [MIT license](http://opensource.org/lic
208
208
* **Merge Sort DOES NOT have overlapping subproblems!** For e.g.:
209
209
- `mergeSort([10, 24, 73 76])`: **DOES NOT have overlapping subproblems!**
210
210
- `mergeSort([10, 24, 10, 24])`: **DOES have overlapping subproblems!**
211
-
- **Optimal Substructure:** A problem is said to have `Optimal Substructure` if an optimal solution can be constructed from optimal solutions of its `subproblems`.
211
+
- **Optimal Substructure:** A problem is said to have `Optimal Substructure` if an optimal solution can be constructed from optimal solutions of its `subproblems`.
212
+
213
+
-----------
214
+
215
+
## Dynamic Programming - Memoization
216
+
- Storing the results of expensive function calls and returning the cached result when the same input occur again.
0 commit comments