Search⌘ K
AI Features

Solution: Longest Word With All Prefixes

Explore how to use the trie data structure to solve the problem of finding the longest word in an array whose every prefix is also present. Learn to build and traverse a trie to validate words efficiently, ensuring you can identify the longest and lexicographically smallest valid word by checking prefix completeness.

Statement

You are given an array of strings, words. Your task is to find the longest string in words such that every prefix of this string is also present in words.

A prefix of a string is any leading substring. For example, the prefixes of "apple" are "a", "ap", "app", and "appl".

  1. If multiple valid strings have the same maximum length, return the lexicographically smallest one.

  2. If no such string exists, return an empty string "".

Constraints:

  • ...