Skip to content

Commit b47f6f4

Browse files
committed
Update README.md
1 parent f0176b8 commit b47f6f4

File tree

1 file changed

+16
-12
lines changed

1 file changed

+16
-12
lines changed

README.md

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -54,31 +54,34 @@ Check out ---> [Sample PR](https://github.com/codedecks-in/LeetCode-Solutions/pu
5454

5555
# Algorithms
5656

57+
- [LeetCode-Solutions](#leetcode-solutions)
58+
- [Got stuck in a LeetCode question?](#got-stuck-in-a-leetcode-question)
59+
- [This repository will help you by providing approach of solving the problems from LeetCode platform.](#this-repository-will-help-you-by-providing-approach-of-solving-the-problems-from-leetcode-platform)
60+
- [Contributors helped us in providing these Awesome solutions.](#contributors-helped-us-in-providing-these-awesome-solutions)
61+
- [If you want to contribute, please create a Pull Request. If you are new to Github please check pull request procedure ---\> PR process](#if-you-want-to-contribute-please-create-a-pull-request-if-you-are-new-to-github-please-check-pull-request-procedure-----pr-process)
62+
- [Don't forget to give us a 🌟 to support us.](#dont-forget-to-give-us-a--to-support-us)
63+
- [Check out -\> Learning Resources](#check-out---learning-resources)
64+
- [Algorithms](#algorithms)
5765
- [Bit Manipulation](#bit-manipulation)
66+
- [Sort](#sort)
5867
- [Array](#array)
5968
- [String](#string)
6069
- [Linked List](#linked-list)
6170
- [Stack](#stack)
6271
- [Queue](#queue)
63-
- [Heap](#heap)
6472
- [Tree](#tree)
6573
- [Hash Table](#hash-table)
66-
- [Math](#math)
6774
- [Two Pointers](#two-pointers)
68-
- [Sort](#sort)
69-
- [Recursion](#recursion)
70-
- [Binary Search](#binary-search)
71-
- [Binary Search Tree](#binary-search-tree)
75+
- [Math](#math)
7276
- [Breadth-First Search](#breadth-first-search)
7377
- [Depth-First Search](#depth-first-search)
74-
- [Backtracking](#backtracking)
78+
- [BackTracking](#backtracking)
7579
- [Dynamic Programming](#dynamic-programming)
76-
- [Greedy](#greedy)
80+
- [Binary Search](#binary-search)
7781
- [Graph](#graph)
78-
- [Geometry](#geometry)
79-
- [Simulation](#simulation)
80-
- [Design](#design)
81-
- [Concurrency](#concurrency)
82+
- [Learning Resources](#learning-resources)
83+
- [Authors](#authors)
84+
- [Contributors](#contributors)
8285

8386
# Bit Manipulation
8487

@@ -163,6 +166,7 @@ Check out ---> [Sample PR](https://github.com/codedecks-in/LeetCode-Solutions/pu
163166
| :--: | ----------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------- | ------ | ------ | ---------- | --- | --------------- |
164167
| 3 | [Longest Substring Without Repeating Characters](https://leetcode.com/problems/longest-substring-without-repeating-characters/) | [Python](./Python/Longest_Substring_Without_Repeating_Characters.py) | _O(n)_ | _O(n)_ | Medium | `Hash Table`<br/>`Sliding Window` | Open for improvisation, mentioned time and space complexities unconfirmed |
165168
| 8 | [String to Integer (atoi)](https://leetcode.com/problems/string-to-integer-atoi/) | [Java](./Java/string-to-integer-atoi.java) | _O(n)_ | _O(1)_ | Medium | | |
169+
| 8 | [String to Integer (atoi)](https://leetcode.com/problems/string-to-integer-atoi/) | [C++](./C++/string-to-integer-atoi.cpp) | _O(n)_ | _O(1)_ | Medium | | |
166170
| 9 | [Palindrome Number](https://leetcode.com/problems/palindrome-number/) | [Java](./Java/palindrome-number.java) | _O(n)_ | _O(1)_ | Easy | | |
167171
| 151 | [Reverse Words in a String](https://leetcode.com/problems/reverse-words-in-a-string/) | [Java](./Java/reverse-words-in-a-string.java) | _O(1)_ | _O(n)_ | Medium | | |
168172
| 383 | [Ransom Note](https://leetcode.com/problems/ransom-note/) | [Java](./Java/ransom-note.java) | _O(1)_ | _O(n)_ | Easy | | Character Count |

0 commit comments

Comments
 (0)