Edit Distance
Given two words word1 _and _word2, find the minimum number of operations required to convert word1 _to _word2.
You have the following 3 operations permitted on a word:
Insert a character
Delete a character
Replace a character
Example 1:
Example 2:
Solution
Last updated