Version 0 of dynamic programming

Updated 2022-01-17 09:18:27 by pooryorick

Dynamic programming is a strategy that employs tabulation or memoization, solving subproblems and then reusing those solutions to solve the bigger problem.

Examples in Tcl

Longest common subsequence: folklore algorithm