-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path155.py
41 lines (35 loc) · 834 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
# Runtime: 48 ms, faster than 93.38% of Python online submissions for Min Stack.
# Difficulty: Easy
class MinStack(object):
def __init__(self):
"""
initialize your data structure here.
"""
self.stack = list()
self.min = float('inf')
def push(self, x):
"""
:type x: int
:rtype: void
"""
if x <= self.min:
self.stack.append(self.min)
self.min = x
self.stack.append(x)
def pop(self):
"""
:rtype: void
"""
x = self.stack.pop()
if x == self.min:
self.min = self.stack.pop()
def top(self):
"""
:rtype: int
"""
return self.stack[-1]
def getMin(self):
"""
:rtype: int
"""
return self.min