MCPcopy 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

1package implement_trie_208
2
3type Trie struct {
4 root *trieNode
5}
6
7type trieNode struct {
8 char byte

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected