Skip to content

Latest commit

 

History

History
16 lines (8 loc) · 243 Bytes

File metadata and controls

16 lines (8 loc) · 243 Bytes

Problem 208: Implement Trie (Prefix Tree)

Difficulty: Medium

Problem

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

Note: You may assume that all inputs are consist of lowercase letters a-z.

Example

None