can you solve this problem to me?đđđ
There is a complete list of words in the Academy of Letters of England. The academy believes that words have changed over time. For example, in a century, a letter of a word has changed and created a new word. This action is called mutation. Now they need a program that can calculate the number of start word jumps to reach the target word based on an array of words, receiving a start word and a target word. Input: Integer and positive number n and then n number of words and finally the word start and end Output: A positive integer as the number of mutations Notes: The length of all array words is the same. The start word and the destination word are distinct. The goal is to find the length of the shortest conversion sequence. Words are made up of lowercase English letters only. Only one letter changes in each conversion. Every converted word, including the target word, must be in the list. The start word can be in the list, it can not be. If no path is found, return 0.