Skip to content

Files

Latest commit

1645b0b · Sep 6, 2020

History

History
8 lines (4 loc) · 348 Bytes

README.md

File metadata and controls

8 lines (4 loc) · 348 Bytes

Daily Coding Problem: Problem #53

Good morning! Here's your coding interview problem for today.

This problem was asked by Apple.

Implement a queue using two stacks. Recall that a queue is a FIFO (first-in, first-out) data structure with the following methods: enqueue, which inserts an element into the queue, and dequeue, which removes it.