Loading practice questions
What is the space complexity of the above implementation of Wagner-Fischer algorithm where "m" and "n" are the lengths of the two strings?
Correct Answer: C — O(mn)
Explanation:
The space complexity of the above Wagner-Fischer algorithm is O(mn).