583. Delete Operation for Two Strings
Description
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".Input: word1 = "leetcode", word2 = "etco"
Output: 4Tags
Solution
Complexity
Code
Last updated