You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+16-12Lines changed: 16 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,31 +54,34 @@ Check out ---> [Sample PR](https://github.com/codedecks-in/LeetCode-Solutions/pu
54
54
55
55
# Algorithms
56
56
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)
57
65
-[Bit Manipulation](#bit-manipulation)
66
+
-[Sort](#sort)
58
67
-[Array](#array)
59
68
-[String](#string)
60
69
-[Linked List](#linked-list)
61
70
-[Stack](#stack)
62
71
-[Queue](#queue)
63
-
-[Heap](#heap)
64
72
-[Tree](#tree)
65
73
-[Hash Table](#hash-table)
66
-
-[Math](#math)
67
74
-[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)
72
76
-[Breadth-First Search](#breadth-first-search)
73
77
-[Depth-First Search](#depth-first-search)
74
-
-[Backtracking](#backtracking)
78
+
-[BackTracking](#backtracking)
75
79
-[Dynamic Programming](#dynamic-programming)
76
-
-[Greedy](#greedy)
80
+
-[Binary Search](#binary-search)
77
81
-[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)
82
85
83
86
# Bit Manipulation
84
87
@@ -163,6 +166,7 @@ Check out ---> [Sample PR](https://github.com/codedecks-in/LeetCode-Solutions/pu
| 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 |
165
168
| 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 |||
| 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 |||
168
172
| 383 |[Ransom Note](https://leetcode.com/problems/ransom-note/)|[Java](./Java/ransom-note.java)|_O(1)_|_O(n)_| Easy || Character Count |
0 commit comments