Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/betomoedano/JavaScript-Coding-Interview-Questions
/
Class
graphs/boggle-board.js:2–2 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
1
// Time O (ws + nm*8^s) | Space O(nm + ws)
2
class
Trie {
3
constructor() {
4
this.root = {};
5
this.endSymbol =
"*"
;
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected