Skip to content

Commit 6e8ae92

Browse files
committed
Time: 68 ms (56.09%), Space: 20.9 MB (8.33%) - LeetHub
1 parent cd10909 commit 6e8ae92

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

0155-min-stack/0155-min-stack.py

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
class MinStack:
2+
def __init__(self):
3+
self.stk = []
4+
return
5+
6+
def push(self, val: int) -> None:
7+
m = min(self.stk[-1][0], val) if self.stk else val
8+
self.stk.append( (m, val) )
9+
10+
def pop(self) -> None:
11+
self.stk.pop()
12+
13+
def top(self) -> int:
14+
return self.stk[-1][1]
15+
16+
def getMin(self) -> int:
17+
return self.stk[-1][0]
18+
19+
20+
21+
# Your MinStack object will be instantiated and called as such:
22+
# obj = MinStack()
23+
# obj.push(val)
24+
# obj.pop()
25+
# param_3 = obj.top()
26+
# param_4 = obj.getMin()

0 commit comments

Comments
 (0)