You are viewing a single comment's thread. Return to all comments →
class Solution: def __init__(self): self.stack=[] self.queue=[] def pushCharacter(self,x): self.stack.append(x) def enqueueCharacter(self,x): self.queue.insert(0,x) def popCharacter(self): return self.stack.pop() def dequeueCharacter(self): return self.queue.pop()
Seems like cookies are disabled on this browser, please enable them to open this website
Day 18: Queues and Stacks
You are viewing a single comment's thread. Return to all comments →