Question: What is the time complexity of the longest increasing subsequence problem using dynamic programming?
Options:
Correct Answer: O(n^2)
Solution:
The longest increasing subsequence can be solved using dynamic programming in O(n^2) time complexity.