Search⌘ K
AI Features

Search Suggestions System

Explore how to implement a search suggestions system that suggests up to three product names based on the prefix typed in a search word. Understand how to use trie data structures to efficiently find lexicographically ordered products sharing common prefixes. This lesson helps you design solutions for prefix-based search queries with constraints on the number of suggestions.

Statement

Given an array of strings called products and a word to search, design a system that, when each character of the searched word is typed, suggests at most three ...