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

Struct NestedIterator

flatten_nested_list_iterator_341/solution.go:92–94  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

90}
91
92type NestedIterator struct {
93 stack *Stack
94}
95
96func Constructor(nestedList []*NestedInteger) *NestedIterator {
97 stack := new(Stack)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected