In this problem, you are given two words, beginWord and endWord, along with a list of valid words called the dictionary. Your task is to determine the length of the shortest transformation sequence from beginWord to endWord under the following conditions:
For example, if you have the word cat
, the letter c
(a consonant) can only be changed to another consonant (e.g., b
, d
, etc.), not to a vowel.
Input Parameters:
Output:
Example:
Input:
beginWord = "lead"
endWord = "gold"
dictionary = ["load", "goad", "gold", "lead", "toad"]
Output:
4
Explanation:
One valid transformation sequence is: "lead" -> "load" -> "goad" -> "gold".
Each transformation complies with the rule that a vowel is replaced by a vowel or a consonant by a consonant.
Additional Notes:
Implement a function or method in your preferred programming language that solves this problem efficiently, keeping in mind that the dictionary can be large.