File tree 1 file changed +1
-2
lines changed
1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -144,8 +144,6 @@ a set of rules that precisely define a sequence of operations.
144
144
* ** Linked Lists**
145
145
* ` B ` [ Straight Traversal] ( src/algorithms/linked-list/traversal )
146
146
* ` 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
149
147
* ** Trees**
150
148
* ` B ` [ Depth-First Search] ( src/algorithms/tree/depth-first-search ) (DFS)
151
149
* ` 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.
188
186
* ` B ` [ Rain Terraces] ( src/algorithms/uncategorized/rain-terraces ) - trapping rain water problem (dynamic programming and brute force versions)
189
187
* ` B ` [ Recursive Staircase] ( src/algorithms/uncategorized/recursive-staircase ) - count the number of ways to reach to the top (4 solutions)
190
188
* ` 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)
191
190
* ` A ` [ N-Queens Problem] ( src/algorithms/uncategorized/n-queens )
192
191
* ` A ` [ Knight's Tour] ( src/algorithms/uncategorized/knight-tour )
193
192
You can’t perform that action at this time.
0 commit comments