Takeaways

Code

CoinFinderDP is a dynamic programming algorithm that will find the minimum number of way to make P cents. It includes a bottom-up and top-down implementation.
EditDistanceDP is a dynamic programming algorithm that will compute the edit distance between two strings. You will need to use that code for program 4.