-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path155_min-stack.py
49 lines (34 loc) · 1.08 KB
/
155_min-stack.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# https://leetcode.com/problems/min-stack/
from collections import deque
class MinStack:
def __init__(self):
self.stack = deque()
self.min_stack = deque()
def push(self, val: int) -> None:
self.stack.append(val)
if len(self.min_stack) == 0:
self.min_stack.append(val)
else:
min_val = self.min_stack.pop()
self.min_stack.append(min_val)
if val < min_val:
self.min_stack.append(val)
else:
self.min_stack.append(min_val)
def pop(self) -> None:
self.stack.pop()
self.min_stack.pop()
def top(self) -> int:
val = self.stack.pop()
self.stack.append(val)
return val
def getMin(self) -> int:
min_val = self.min_stack.pop()
self.min_stack.append(min_val)
return min_val
# Your MinStack object will be instantiated and called as such:
# obj = MinStack()
# obj.push(val)
# obj.pop()
# param_3 = obj.top()
# param_4 = obj.getMin()