Question: In the Longest Common Subsequence problem, what is the time complexity of the dynamic programming solution?
Options:
Correct Answer: O(m * n)
Solution:
The time complexity of the dynamic programming solution for the Longest Common Subsequence problem is O(m * n), where m and n are the lengths of the two sequences.