Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
srnvl authored Apr 7, 2023
1 parent e3e5ec0 commit 1e9c831
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ Hashmap

Stack
--------------
1. Implement Stack as an Array
2. Implement Stack as a Linked List
3. Implement Stack as a Queue (G75)
4. Valid(Balanced) Parentheses (G75)
1. Implement Stack using an Array
2. Implement Stack using a Linked List
3. Implement Queue using Stack (G75)
4. Valid (Balanced) Parentheses (G75)
5. Backspace String Compare (G75)
6. Evaluate Reverse Polish Notation (G75)
7. Min Stack (G75)
Expand All @@ -68,7 +68,11 @@ Stack

Queue
--------------
1. Implement Queue as an Array
1. Implement Queue using an Array
2. Implement Queue using a Linked List
3. Implement Stack using Queue
4. Circular (Ring) buffer
5. Design Hit Counter(G75)

Sorting
-----------
Expand Down

0 comments on commit 1e9c831

Please sign in to comment.