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

Struct MinStack

min_stack_155/solution.go:8–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6}
7
8type MinStack struct {
9 top *stackNode
10 min *stackNode
11}
12
13func Constructor() MinStack {
14 return MinStack{}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected