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

Method Top

min_stack_155/solution.go:64–66  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

62}
63
64func (this *MinStack) Top() int {
65 return this.top.val
66}
67
68func (this *MinStack) GetMin() int {
69 return this.min.val

Callers 1

TestMinStack_1Function · 0.80

Calls

no outgoing calls

Tested by 1

TestMinStack_1Function · 0.64