Question: In the dynamic programming approach to the coin change problem, what does the dp array represent?
Options:
Correct Answer: Minimum number of coins for each amount
Solution:
The dp array in the coin change problem represents the minimum number of coins needed to make each amount.