Adding stack and queue questions

This commit is contained in:
hitanshu310 2025-04-01 23:24:04 +05:30
parent 3aa234bcea
commit 1dc0efd006

View File

@ -45,3 +45,10 @@
4. [Summary Ranges](https://leetcode.com/problems/summary-ranges/description/) `Leetcode 150`
5. [Minimum Number of Arrows to Burst Balloons](https://leetcode.com/problems/minimum-number-of-arrows-to-burst-balloons/description/) `Leetcode 150`
6. [Meeting rooms II](https://www.interviewbit.com/problems/meeting-rooms/) `Blind 75`
### Topic: Stack and Queue
1. [Implement Stack using Queues](https://leetcode.com/problems/implement-stack-using-queues/description/) `Striver`
2. [Implement Queue using Stacks](https://leetcode.com/problems/implement-queue-using-stacks/description/) `Striver`
3. [Valid Parentheses](https://leetcode.com/problems/valid-parentheses/description/) `Leetcode 150` `Striver`
4. [Min Stack](https://leetcode.com/problems/min-stack/description/) `Leetcode 150` `Striver`
5. [LRU Cache](https://leetcode.com/problems/lru-cache/description/) `Leetcode 150` `Striver`