Given two strings word1 and word2, return the minimum number of operations required to convert word1 to word2.
You have the following three operations permitted on a word:
word1 = "horse", word2 = "ros"3word1 = "intention", word2 = "execution"5word1 = "", word2 = ""00 <= word1.length, word2.length <= 500word1 and word2 consist of lowercase English lettersExpected time complexity: O(m × n)Run your code to see results
Use Cmd+Enter to run