MCPcopy Create free account
hub / github.com/ByteByteGoHq/coding-interview-patterns / DesignATrie

Method DesignATrie

java/Tries/DesignATrie.java:16–18  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

14 TrieNode root;
15
16 public DesignATrie() {
17 this.root = new TrieNode();
18 }
19
20 public void insert(String word) {
21 TrieNode node = this.root;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected