MCPcopy Create free account
hub / github.com/betomoedano/JavaScript-Coding-Interview-Questions /

Class

tries/multi-string-search.js:4–4  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2// MY SOLUTION
3////////////////////////////////////////////
4class PrefixTrie {
5 constructor(string) {
6 this.root = {};
7 this.lastSymbol = "*";

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected