Question: What is the primary difference between dynamic programming and divide and conquer?
Options:
Correct Answer: Dynamic programming stores solutions to subproblems, while divide and conquer does not
Solution:
The primary difference is that dynamic programming stores solutions to subproblems to avoid redundant work, while divide and conquer typically does not.