Search⌘ K
AI Features

Solution: Verifying an Alien Dictionary

Explore how to verify sorting of words in an alien language by applying topological sort concepts. This lesson guides you through comparing adjacent words based on a given alien alphabet order, handling character-by-character lexicographical checks efficiently. You'll learn to implement an optimized solution with clear time and space complexity insights, allowing you to determine if the provided words list respects the alien dictionary's order.

Statement

In an alien language, the alphabet consists of the same lowercase English letters but arranged in a different order.

Given a list of words, words, written in this alien language, and a string order representing the order of the alien alphabet (as a permutation of lowercase letters), return TRUE if the words are sorted lexicographically according to order; otherwise, return FALSE.

Note: A word a is considered lexicographically smaller than word b if:

  • At the first position where the two words differ, the character in a comes before the character in b in the given order string.

  • If one word is a prefix of the other (and all compared characters are the same), then the shorter word is considered smaller.

Constraints:

  • 11 \leq words.length 103\leq 10^3
  • 11 \leq words[i].length 20\leq 20
...