LeetCode 0583. Delete Operation for Two Strings Solution in Java, C++, Python & More | Explanation + Code

CoderIndeed
0
0583. Delete Operation for Two Strings

Description

Given two strings word1 and word2, return the minimum number of steps required to make word1 and word2 the same.

In one step, you can delete exactly one character in either string.

 

Example 1:

Input: word1 = "sea", word2 = "eat"
Output: 2
Explanation: You need one step to make "sea" to "ea" and another step to make "eat" to "ea".

Example 2:

Input: word1 = "leetcode", word2 = "etco"
Output: 4

 

Constraints:

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

Solutions

Solution 1: Dynamic Programming

We define f[i][j] as the minimum number of deletions required to make the first i characters of the string word1 and the first j characters of the string word2 the same. The answer is f[m][n], where m and n are the lengths of the strings word1 and word2, respectively.

Initially, if j = 0, then f[i][0] = i; if i = 0, then f[0][j] = j.

When i, j > 0, if word1[i - 1] = word2[j - 1], then f[i][j] = f[i - 1][j - 1]; otherwise, f[i][j] = min(f[i - 1][j], f[i][j - 1]) + 1.

Finally, return f[m][n].

The time complexity is O(m × n), and the space complexity is O(m × n). Here, m and n are the lengths of the strings word1 and word2, respectively.

PythonJavaC++GoTypeScriptRust
class Solution: def minDistance(self, word1: str, word2: str) -> int: m, n = len(word1), len(word2) f = [[0] * (n + 1) for _ in range(m + 1)] for i in range(1, m + 1): f[i][0] = i for j in range(1, n + 1): f[0][j] = j for i, a in enumerate(word1, 1): for j, b in enumerate(word2, 1): if a == b: f[i][j] = f[i - 1][j - 1] else: f[i][j] = min(f[i - 1][j], f[i][j - 1]) + 1 return f[m][n](code-box)

Post a Comment

0Comments

Post a Comment (0)

#buttons=(Accept !) #days=(20)

Our website uses cookies to enhance your experience. Check Now
Accept !