MCPcopy Create free account
hub / github.com/austingebauer/go-leetcode / LRUNode

Struct LRUNode

lru_cache_146/solution.go:14–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12}
13
14type LRUNode struct {
15 prev *LRUNode
16 next *LRUNode
17 key int
18 value int
19}
20
21func Constructor(capacity int) LRUCache {
22 return LRUCache{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected