Skip to content

Commit 905a73a

Browse files
authored
Update README.md
1 parent 4c41ce9 commit 905a73a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
In This Repository, I have written some of the important Algorithms and Data Structures efficiently in Java with proper references to time and space complexity. These Pre-cooked and well-tested codes helps to implement larger hackathon problems in lesser time.
44

5-
### Algorithms:
5+
## Algorithms:
66
| Algorithm | Big-O Time, Big-O Space | Comments/Symbols |
77
| :----------- |:-------------:| :----- |
88
| [DFS - 2-D Grid](https://github.com/joney000/Java-Competitive-Programming/blob/master/Algorithms/DFS_Grid.java) | O(M * N), O(M * N) | M * N = dimensions of matrix
@@ -41,7 +41,7 @@ In This Repository, I have written some of the important Algorithms and Data Str
4141
| [Trie / Prefix Tree](https://github.com/joney000/Java-Competitive-Programming/blob/master/Algorithms/Trie.java)| O(N * L), O(N * L)| if there are N strings of L size, per query time(Prefix information) = O(L)
4242
| [LIS - Longest Increasing Subsequence](https://github.com/joney000/Java-Competitive-Programming/blob/master/Algorithms/LIS_nLOGn.java)| O(N * log(N)), O(N)
4343

44-
### Contributions
44+
## Contributions
4545

4646
Want to contribute in corrections or enhancement? Great!
4747
Please raise a PR, or drop a mail at developer.jaswant@gmail.com .

0 commit comments

Comments
 (0)