Question: What is the space complexity of a typical dynamic programming solution that uses a 2D table?
Options:
Correct Answer: O(n^2)
Solution:
The space complexity of a typical dynamic programming solution that uses a 2D table is O(n^2), where n is the size of the input.