@@ -14,18 +14,21 @@ 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 )
26
29
- [ Postfix Expression Evaluation] ( src/_DataStructures_/Stack/postfix-expression-evaluation )
27
- - [ Remove Consecutive Repeated Digits] (src/_ DataStructures_ /Stack/ remove-consecutive-repeated-digits)
28
-
30
+ - [ Remove Consecutive Repeated Digits] ( src/_DataStructures_/Stack/remove-consecutive-repeated-digits )
31
+ - [ Implement 2 Stacks using Single Array ] ( src/_DataStructures_/Stack/2-stacks-using1-array )
29
32
30
33
- [ Queue] ( src/_DataStructures_/Queue )
31
34
- [ Weave] ( src/_DataStructures_/Queue/weave )
@@ -43,6 +46,7 @@ Collection of interview questions with Unit Tests. Problems includes Data Struct
43
46
- [ Get Maze Path] ( src/_Problems_/get_subsequence )
44
47
- [ Get longest consecutive 1s] ( src/_Problems_/max-consecutive-1s )
45
48
- [ Get Max Char] ( src/_Problems_/maxchar )
49
+ - [ Get Smallest Common Number] ( src/_Problems_/get-smallest-common-number )
46
50
- [ Merge 2 Sorted Arrays] ( src/_Problems_/merge-two-sorted-arrays )
47
51
- [ Palindrome] ( src/_Problems_/palindrome )
48
52
- [ Product of Elements] ( src/_Problems_/product-of-elements )
@@ -68,9 +72,10 @@ Collection of interview questions with Unit Tests. Problems includes Data Struct
68
72
69
73
## CONTRIBUTION Guide
70
74
71
- It's great to know that you want to contribute to this repo. Thanks for taking interest. Before you start, read the following carefully.
75
+ 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
76
73
77
- When adding a new ** problem** with solution
78
+
74
79
- Take care of the filename convention (Very Important)
75
80
- Problem statement should be there with examples
76
81
- Make sure you add the Run Time complexity of your solution
@@ -79,7 +84,8 @@ It's great to know that you want to contribute to this repo. Thanks for taking i
79
84
- Strictly follow ESLINT rules
80
85
81
86
- When adding a Unit Test
87
+
82
88
- Take care of the file name convention
83
89
- Make sure CI (Travis) is passing
84
-
85
- Keep an eye on this guide, it's subjected to change frequently.
90
+
91
+ Keep an eye on this guide, it's subjected to change frequently.
0 commit comments