Intervue featured on Shark TankIntervue featured on Shark Tank - mobile banner

Given two words word1 and word2, find the minimum number of operations (insertions, deletions and substitutions) required to change word1 into word2.

Constraints:

  • 0 <= word1.length, word2.length <= 500
  • word1 and word2 consist of lowercase English letters

Examples:

Input: word1 = "intention", word2 = "execution"

Output: 5

Explanation: intention -> inention (remove 't') -> enention (remove 'i') -> exention (replace 'n' with 'x') -> exection (replace 'n' with 'x') -> execution (insert 'c')

Solutions

Dynamic Programming

Time: O(m*n)Space: O(m*n)

The dynamic programming approach involves creating a 2D array dp where dp[i][j] represents the minimum number of operations required to change the first i characters of word1 into the first j characters of word2. The base cases are when one of the words is empty, in which case the minimum number of operations is the length of the non-empty word. For the recursive case, if the current characters in word1 and word2 are the same, then the minimum number of operations is the same as the minimum number of operations for the substrings without the current characters. If the current characters are different, then the minimum number of operations is 1 plus the minimum of the minimum number of operations for the substrings without the current character in word1, without the current character in word2, and without the current characters in both word1 and word2.


def minDistance(word1, word2):
    m, n = len(word1), len(word2); dp = [[0] * (n + 1) for _ in range(m + 1)]; for i in range(m + 1):
        dp[i][0] = i; for j in range(n + 1):
            dp[0][j] = j; for i in range(1, m + 1):
                for j in range(1, n + 1):
                    if word1[i - 1] == word2[j - 1]:
                        dp[i][j] = dp[i - 1][j - 1]; else:
                            dp[i][j] = 1 + min(dp[i - 1][j], dp[i][j - 1], dp[i - 1][j - 1]); return dp[m][n]

Difficulty: Hard

Category: Dynamic Programming

Frequency: High

Company tags:

GoogleAmazonMicrosoft