-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path155.py
43 lines (32 loc) · 881 Bytes
/
155.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
"""
처음에 짠 코드
class MinStack:
def __init__(self):
self.stack = []
def push(self, val: int) -> None:
self.stack.append(val)
def pop(self) -> None:
self.stack.pop()
def top(self) -> int:
return self.stack[-1]
def getMin(self) -> int:
return min(self.stack)
"""
class MinStack:
def __init__(self):
self.stack = []
self.min = None
def push(self, val: int) -> None:
if self.min is None:
self.min = val
else:
self.min = min(self.min, val)
self.stack.append(val)
def pop(self) -> None:
poppedItem = self.stack.pop()
if self.min == poppedItem:
self.min = min(self.stack) if self.stack else None
def top(self) -> int:
return self.stack[-1]
def getMin(self) -> int:
return self.min