Question: What is the space complexity of the dynamic programming solution for the Fibonacci sequence using memoization?
Options:
Correct Answer: O(n)
Solution:
The space complexity of the dynamic programming solution for the Fibonacci sequence using memoization is O(n) due to the storage of computed values.