Skip to content

Commit 3eab705

Browse files
committed
update: entry in readme
1 parent c2a5002 commit 3eab705

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

README.md

+9-3
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,19 @@ Collection of interview questions with Unit Tests. Problems includes Data Struct
1414
### Data Structures
1515

1616
- [Singly Linked List](src/_DataStructures_/LinkedList)
17+
1718
- [N Element From Last](src/_DataStructures_/LinkedList/element-from-last)
1819
- [Middle Node](src/_DataStructures_/LinkedList/middle-node)
1920
- [Detect Loop](src/_DataStructures_/LinkedList/loop-in-list)
2021
- [Reverse Linked List](src/_DataStructures_/LinkedList/reverse-linked-list)
22+
2123
- [Stack](src/_DataStructures_/Stack)
24+
2225
- [Implement Queue Using Stack](src/_DataStructures_/Stack/immitate-queue-using-stack)
2326
- [Baseball Game](src/_DataStructures_/Stack/baseball-game)
2427
- [Minimum Stack](src/_DataStructures_/Stack/min-stack)
2528
- [Balanced Parenthesis](src/_DataStructures_/Stack/balanced-parenthesis)
29+
- [Implement 2 Stacks using Single Array](src/_DataStructures_/Stack/2-stacks-using1-array)
2630

2731
- [Queue](src/_DataStructures_/Queue)
2832
- [Weave](src/_DataStructures_/Queue/weave)
@@ -65,9 +69,10 @@ Collection of interview questions with Unit Tests. Problems includes Data Struct
6569

6670
## CONTRIBUTION Guide
6771

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.
6973

7074
- When adding a new **problem** with solution
75+
7176
- Take care of the filename convention (Very Important)
7277
- Problem statement should be there with examples
7378
- 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
7681
- Strictly follow ESLINT rules
7782

7883
- When adding a Unit Test
84+
7985
- Take care of the file name convention
8086
- 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

Comments
 (0)