583. Delete Operation for Two Strings
Medium
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:
Example 2:
Constraints:
1 <= word1.length, word2.length <= 500
word1
andword2
consist of only lowercase English letters.
解題
這題和 72. 很像,但是沒有 Replace,只有 Delete 和 Insert
Last updated