Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/austingebauer/go-leetcode
/ Trie
Struct
Trie
implement_trie_208/solution.go:3–5 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
1
package
implement_trie_208
2
3
type
Trie
struct
{
4
root *trieNode
5
}
6
7
type
trieNode
struct
{
8
char byte
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected