583. Delete Operation for Two Strings (M)
https://leetcode.com/problems/delete-operation-for-two-strings/
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: 4Solution:
Previous718. Maximum Length of Repeated SubarrayNext712. Minimum ASCII Delete Sum for Two Strings(M)
Last updated