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

Method TrieNode

java/Tries/DesignATrie.java:7–10  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

5 Map<Character, TrieNode> children;
6 boolean isWord;
7 public TrieNode() {
8 this.children = new HashMap<>();
9 this.isWord = false;
10 }
11}
12
13public class DesignATrie {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected