-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsolution.py
36 lines (29 loc) · 877 Bytes
/
solution.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
class MyQueue:
def __init__(self):
self.push_stack = []
self.pop_stack = []
def push(self, x: int) -> None:
self.push_stack.append(x)
def pop(self) -> int:
if self.empty():
return
elif not self.pop_stack:
while self.push_stack:
self.pop_stack.append(self.push_stack.pop())
return self.pop_stack.pop()
def peek(self) -> int:
if self.empty():
return
elif not self.pop_stack:
while self.push_stack:
self.pop_stack.append(self.push_stack.pop())
return self.pop_stack[-1]
def empty(self) -> bool:
return not self.push_stack and not self.pop_stack
if __name__ == '__main__':
myQueue = MyQueue()
myQueue.push(1)
myQueue.push(2)
myQueue.peek()
myQueue.pop()
myQueue.empty()