MCPcopy Create free account
hub / github.com/Tiwarishashwat/InterviewCodes / Node

Method Node

sumOfPrefixScoresOfStrings.java:33–36  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

31 Node child[];
32 int count;
33 Node(){
34 child = new Node[26]; //0 to 9 digits
35 count = 0;
36 }
37}
38
39class Trie {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected