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:
This problem is also known as Levenshtein Distance and has applications in spell checkers, DNA sequence alignment, and diff utilities.
Recurrence Relation:
word1 = "horse", word2 = "ros"3word1 = "intention", word2 = "execution"5word1 = "", word2 = "abc"30 <= word1.length, word2.length <= 500word1 and word2 consist of lowercase English letters.Click "Run" to execute your code against test cases
Socratic guidance - I'll ask questions, not give answers