-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path225.py
44 lines (32 loc) · 797 Bytes
/
225.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
class MyStack(object):
def __init__(self):
"""
Initialize your data structure here.
"""
def push(self, x):
"""
Push element x onto stack.
:type x: int
:rtype: void
"""
def pop(self):
"""
Removes the element on top of the stack and returns that element.
:rtype: int
"""
def top(self):
"""
Get the top element.
:rtype: int
"""
def empty(self):
"""
Returns whether the stack is empty.
:rtype: bool
"""
# Your MyStack object will be instantiated and called as such:
# obj = MyStack()
# obj.push(x)
# param_2 = obj.pop()
# param_3 = obj.top()
# param_4 = obj.empty()