Skip to content

Latest commit

 

History

History
17 lines (6 loc) · 268 Bytes

README.md

File metadata and controls

17 lines (6 loc) · 268 Bytes

Prefix Tree

  • Implement a trie with insert, search and startsWith methods.
Note:

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

Solution:

An implementation using std::unique_ptr.