Skip to content

Commit e40a67b

Browse files
committedFeb 12, 2025·
Move "valid parentheses" to the "Uncategorized" section
1 parent c5dd048 commit e40a67b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed
 

‎README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,6 @@ a set of rules that precisely define a sequence of operations.
144144
* **Linked Lists**
145145
* `B` [Straight Traversal](src/algorithms/linked-list/traversal)
146146
* `B` [Reverse Traversal](src/algorithms/linked-list/reverse-traversal)
147-
* **Stack**
148-
* `B` [Valid Parentheses](src/algorithms/stack/valid-parentheses) - check if a string has valid parentheses in the correct order
149147
* **Trees**
150148
* `B` [Depth-First Search](src/algorithms/tree/depth-first-search) (DFS)
151149
* `B` [Breadth-First Search](src/algorithms/tree/breadth-first-search) (BFS)
@@ -188,6 +186,7 @@ a set of rules that precisely define a sequence of operations.
188186
* `B` [Rain Terraces](src/algorithms/uncategorized/rain-terraces) - trapping rain water problem (dynamic programming and brute force versions)
189187
* `B` [Recursive Staircase](src/algorithms/uncategorized/recursive-staircase) - count the number of ways to reach to the top (4 solutions)
190188
* `B` [Best Time To Buy Sell Stocks](src/algorithms/uncategorized/best-time-to-buy-sell-stocks) - divide and conquer and one-pass examples
189+
* `B` [Valid Parentheses](src/algorithms/stack/valid-parentheses) - check if a string has valid parentheses (using stack)
191190
* `A` [N-Queens Problem](src/algorithms/uncategorized/n-queens)
192191
* `A` [Knight's Tour](src/algorithms/uncategorized/knight-tour)
193192

0 commit comments

Comments
 (0)