Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Word Ladder 2 Implementation
00:00
5 left

Word Ladder 2 Implementation

HardPython

Problem

OfferUp may need to find the shortest sequence of valid keyword transformations between two search terms. Given a beginWord, an endWord, and a dictionary, return every shortest transformation sequence.

A transformation changes exactly one character, and every intermediate word must appear in wordList. The first and last words are included in each returned sequence. If no transformation exists, return an empty list.

Formal Specification

Implement find_ladders(beginWord, endWord, wordList).

  • beginWord: a lowercase string.
  • endWord: a lowercase string with the same length as beginWord.
  • wordList: a list of lowercase strings of the same length.
  • Return a list of paths, where each path is a list of strings from beginWord to endWord.
  • Return only paths with the minimum possible number of transformations. The paths may be returned in any order.

Use an efficient representation for finding words that differ at exactly one position. A path cannot reuse a word.

Constraints

  • 1 <= len(beginWord) <= 10
  • len(beginWord) == len(endWord)
  • 1 <= len(wordList) <= 5 * 10^3
  • All words contain lowercase English letters.
  • All words have the same length.
  • Duplicate dictionary entries may be present.

Function Signature

def find_ladders(beginWord, endWord, wordList):
Interviewer

Your question is Word Ladder 2 Implementation. Start with the requirements in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePython 3
You need to log in / sign up to run or submit.Ln 2
Run your code to see test output here.