You are given two words - beginWord and endWord. You also have a wordList of size n.
All words are of the same length.You have to create a transformation sequence from beginWord to endWord that looks like this:
beginWord → str1 → str2 → str3 → … → strkAdjacent pairs in the sequence differ by a single character, and all strings from str1 to strk lie in wordList.
Also strk = endWord.
Find the minimum number of words in the shortest possible transformation sequence. If such a sequence is not possible return 0.
c++
1 | bool near(string& a, string& b) { |