MCPcopy
hub / github.com/doocs/leetcode / list

Struct list

solution/0400-0499/0460.LFU Cache/Solution.go:82–85  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

80}
81
82type list struct {
83 head *node
84 tail *node
85}
86
87func newList() *list {
88 head := new(node)

Callers 15

runFunction · 0.85
deserializeMethod · 0.85
findPermutationMethod · 0.85
subarraySumMethod · 0.85
minimumMovesMethod · 0.85
__init__Method · 0.85
maximumCoinsMethod · 0.85
canSplitArrayMethod · 0.85
getDataframeSizeFunction · 0.85
__init__Method · 0.85
minimumRelativeLossesMethod · 0.85
maxGcdSumMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected