Given two words word1 and word2, find the minimum number of steps required to make word1 and word2 the same, where in each step you can delete one character in either string.
Example 1:
Note:
The length of given words won’t exceed 500.
Characters in given words can only be lower-case letters.
解法1:
这题和edit distance的思路一样。用二维dp即可解决。
C++
Java