File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ namespace DataStructures.Stack
19
19
{
20
20
public class StackUtils
21
21
{
22
- private static readonly Dictionary < char , char > parenthesesMap = new Dictionary < char , char > ( )
22
+ private static readonly Dictionary < char , char > parenthesesMap = new Dictionary < char , char >
23
23
{
24
24
{ '(' , ')' } ,
25
25
{ '{' , '}' } ,
@@ -31,7 +31,6 @@ public class MinStack
31
31
{
32
32
private readonly Stack < int > mainStack ;
33
33
private readonly Stack < int > minStack ;
34
-
35
34
36
35
37
36
public MinStack ( )
Original file line number Diff line number Diff line change @@ -242,6 +242,7 @@ find more than one implementation for the same objective but using different alg
242
242
* [ Array-based Stack] ( ./DataStructures/Stack/ArrayBasedStack.cs )
243
243
* [ List-based Stack] ( ./DataStructures/Stack/ListBasedStack.cs )
244
244
* [ Queue-based Stack] ( ./DataStructures/Stack/QueueBasedStack.cs )
245
+ * [ Stack Utils] ( ./DataStructures/Stack/StackUtils.cs )
245
246
* [ Heap] ( ./DataStructures/Heap )
246
247
* [ Min-Max Heap] ( ./DataStructures/Heap/MinMaxHeap.cs )
247
248
* [ Binary Heap] ( ./DataStructures/Heap/BinaryHeap.cs )
You can’t perform that action at this time.
0 commit comments