LeetCodeSolutions
LeetCodeSolutions copied to clipboard
Collection of LeetCode questions to ace the coding interview! - Created using [LeetHub](https://github.com/QasimWani/LeetHub)
Implement a Queue using Linked List. A Query Q is of 2 Types (i) 1 x (a query of this type means pushing 'x' into the queue) (ii) 2 (a...
Implement a Stack Data Structure specifically to store integer data using a Singly Linked List. You need to implement the following public functions : peek() push() pop() isEmpty() Please assign...
problem statement: Write a program to reverse a stack using recursion without using any loops. Please assign this issue to me and add a hacktoberfest label to it.
@nithin999989 Can you assign me this with hacktoberfest accepted label so that I can make a PR? I have already made a PR can you please accept that?
Add Leetcode N Queens Problem
Add leet code question link for every question/folder
Upadte my readme file with good english grammar and also describe about this repository in detail
Time complexity: O(1) Space complexity: O(1)