Leetcode Solutions Java Python C++
All contents and pictures on this website come from the Internet and are updated regularly every week. They are for personal study and research only, and should not be used for commercial purposes. Thank you for your cooperation.
Welcome to Subscribe On Youtube:

232. Implement Queue using Stacks

Implement the following operations of a queue using stacks.

Example:

MyQueue queue = new MyQueue();

queue.push(1);
queue.push(2);
queue.peek();  // returns 1
queue.pop();   // returns 1
queue.empty(); // returns false

Notes:

Difficulty:

Easy

Lock:

Normal

Company:

Amazon Apple Bloomberg ByteDance eBay Google Mathworks Microsoft Oracle Uber Yahoo Yandex

Problem Solution

232-Implement-Queue-using-Stacks

All Problems:

Link to All Problems
All contents and pictures on this website come from the Internet and are updated regularly every week. They are for personal study and research only, and should not be used for commercial purposes. Thank you for your cooperation.