107 Implement Trie (Prefix Tree) Medium Tries

Implement a trie with insert, search, and startsWith methods.

108 Design Add and Search Words Medium Tries

Design a data structure that supports adding words and searching with '.' wildcards that match any character.

109 Word Search II Hard Tries

Given a board of characters and a list of words, find all words that can be formed by adjacent cells.

110 Longest Word in Dictionary Medium Tries

Given a list of words, find the longest word that can be built one character at a time by other words in the list.