You are given two non-empty string, str1 and str2
Return the minimum number of character edits (insert, delete, change) until str1 becomes str2's prefix.
One line with 2 strings, separated by space
$1 \le str1.length() \le 2000$
$1 \le str2.length() \le 2000$
'a' <= ch <= 'z', for any ch in str1 & str2
An integer
abc abc
0
ac abcd
1
babce abcde
2