This website uses cookies to enhance the user experience

Alien Dictionary Order

Difficulty: 🔥 Hard

Problem Statement

There is a new alien language which uses the English alphabet. However, the order among letters are unknown to you. You are given a list of words from the dictionary, where words are sorted lexicographically by the rules of this new language. Derive the order of letters in this language.

Example
Input: words = ["wrt", "wrf", "er", "ett", "rftt"]
Output: "wertf"

Input: words = ["z", "x", "z"]
Output: "" (Invalid order, as there's a cycle)
Constraints
  • 1 <= words.length <= 1000
  • 1 <= words[i].length <= 100
  • words[i] consists of only lowercase English letters.

Expected Challenge Output

When the function alienOrder is called with the given example input, the expected output is the correct order of letters in the alien language, or an empty string if no valid order exists.

console.log(alienOrder(["wrt", "wrf", "er", "ett", "rftt"]));  // Output: "wertf"
console.log(alienOrder(["z", "x", "z"]));  // Output: ""
function alienOrder(words) {
// YOUR SOLUTION HERE
}

Memory: 0

CPU: 0