@@ -14,15 +14,19 @@ Collection of interview questions with Unit Tests. Problems includes Data Struct
14
14
### Data Structures
15
15
16
16
- [ Singly Linked List] ( src/_DataStructures_/LinkedList )
17
+
17
18
- [ N Element From Last] ( src/_DataStructures_/LinkedList/element-from-last )
18
19
- [ Middle Node] ( src/_DataStructures_/LinkedList/middle-node )
19
20
- [ Detect Loop] ( src/_DataStructures_/LinkedList/loop-in-list )
20
21
- [ Reverse Linked List] ( src/_DataStructures_/LinkedList/reverse-linked-list )
22
+
21
23
- [ Stack] ( src/_DataStructures_/Stack )
24
+
22
25
- [ Implement Queue Using Stack] ( src/_DataStructures_/Stack/immitate-queue-using-stack )
23
26
- [ Baseball Game] ( src/_DataStructures_/Stack/baseball-game )
24
27
- [ Minimum Stack] ( src/_DataStructures_/Stack/min-stack )
25
28
- [ Balanced Parenthesis] ( src/_DataStructures_/Stack/balanced-parenthesis )
29
+ - [ Implement 2 Stacks using Single Array] ( src/_DataStructures_/Stack/2-stacks-using1-array )
26
30
27
31
- [ Queue] ( src/_DataStructures_/Queue )
28
32
- [ Weave] ( src/_DataStructures_/Queue/weave )
@@ -65,9 +69,10 @@ Collection of interview questions with Unit Tests. Problems includes Data Struct
65
69
66
70
## CONTRIBUTION Guide
67
71
68
- It's great to know that you want to contribute to this repo. Thanks for taking interest. Before you start, read the following carefully.
72
+ It's great to know that you want to contribute to this repo. Thanks for taking interest. Before you start, read the following carefully.
69
73
70
74
- When adding a new ** problem** with solution
75
+
71
76
- Take care of the filename convention (Very Important)
72
77
- Problem statement should be there with examples
73
78
- Make sure you add the Run Time complexity of your solution
@@ -76,7 +81,8 @@ It's great to know that you want to contribute to this repo. Thanks for taking i
76
81
- Strictly follow ESLINT rules
77
82
78
83
- When adding a Unit Test
84
+
79
85
- Take care of the file name convention
80
86
- Make sure CI (Travis) is passing
81
-
82
- Keep an eye on this guide, it's subjected to change frequently.
87
+
88
+ Keep an eye on this guide, it's subjected to change frequently.
0 commit comments