LeetCode 208
-
[Algo Rhythm🕺💃] LeetCode 208. Implement Trie (Prefix Tree)Algo Rhythm🕺💃/LeetCode 2020. 9. 3. 16:04
📚 Problem description Implement a trie with insert, search, and startsWith methods. Example: Trie trie = new Trie(); trie.insert("apple"); trie.search("apple"); // returns true trie.search("app"); // returns false trie.startsWith("app"); // returns true trie.insert("app"); trie.search("app"); // returns true Note: You may assume that all inputs are consist of lowercase letters a-z. All inputs ar..