Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/austingebauer/go-leetcode
/ Stack
Struct
Stack
flatten_nested_list_iterator_341/solution.go:62–64 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
60
}
61
62
type
Stack
struct
{
63
items []*ListIndex
64
}
65
66
func
(s *Stack) Push(v *ListIndex) {
67
s.items = append(s.items, v)
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected