Question: What is the space complexity of the dynamic programming solution for the edit distance problem?
Options:
Correct Answer: O(n * m)
Solution:
The space complexity of the dynamic programming solution for the edit distance problem is O(n * m), where n and m are the lengths of the two strings.