Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Coding: Stack Using Two Queues
00:00
5 left

Coding: Stack Using Two Queues

EasyPython

Problem

Truveta's data-processing components may need LIFO behavior even when only queue primitives are available. Implement a stack using exactly two queues.

Given a sequence of operations, process each operation and return the values produced by pop operations. The stack must follow last-in, first-out order.

Formal Specification

Implement stack_with_two_queues(operations), where operations is a list of dictionaries. Each dictionary is either {"op": "push", "value": integer} or {"op": "pop"}. Return a list containing the integer removed by every pop, or None when pop is called on an empty stack.

Your implementation must maintain two queue instances and may use only queue-style operations, such as adding to the back, removing from the front, checking length, and checking whether a queue is empty. Do not use a list as the underlying stack.

Constraints

  • 1 <= len(operations) <= 10^5
  • Each pushed value is an integer in [-10^9, 10^9]
  • Every operation is either a valid push or pop operation
  • At most 10^5 values are stored simultaneously

Function Signature

def stack_with_two_queues(operations):
Interviewer

Your question is Coding: Stack Using Two Queues. Start with the requirements in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePython 3
You need to log in / sign up to run or submit.Ln 2
Run your code to see test output here.