You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Notice that your pop() is doing:
self.q_.pop() # just pops but doesn't return anything
But the problem expects you to:
return the popped element (the element that was on the top of the stack)
0 commit comments