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:
0 <= word1.length, word2.length <= 500word1 and word2 consist of lowercase English letters.word1 = "horse", word2 = "ros"3word1 = "intention", word2 = "execution"5