File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -99,7 +99,6 @@ Check out ---> [Sample PR](https://github.com/codedecks-in/LeetCode-Solutions/pu
99
99
| 1572 | [ Matrix Diagonal Sum] ( https://leetcode.com/problems/matrix-diagonal-sum/ ) | [ Java] ( ./Java/matrix-diagonal-sum.java ) | _ O(N)_ | _ O(1)_ | Easy | | |
100
100
| 811 | [ Subdomain Visit Count] ( https://leetcode.com/problems/subdomain-visit-count/ ) | [ Javascript] ( ./JavaScript/Subdomain-Visit-Count.js ) | _ O(N* M)_ | _ O(N* M + N)_ | Easy | | |
101
101
| 53 | [ Maximum Subarray] ( https://leetcode.com/problems/maximum-subarray/ ) | [ C++] ( ./C++/maximum-subarray.cpp ) | _ O(N)_ | _ O(1)_ | Easy | Array | |
102
- | 1 | [ Two Sum] ( https://leetcode.com/problems/two-sum/ ) | [ C++] ( ./C++/two-sum.cpp ) | _ O(N^2)_ | _ O(1)_ | Easy | Array | |
103
102
| 495 | [ Teemo Attacking] ( https://leetcode.com/problems/teemo-attacking ) | [ C++] ( ./C++/teemo-attacking.cpp ) | _ O(n)_ | _ O(1)_ | Medium| Array | |
104
103
| 15 | [ 3 Sum] ( https://leetcode.com/problems/3sum/ ) | [ Python] ( ./Python/ThreeNumbersSum.py ) | O( nLog(n) ) | O(1) | Medium | Array |
105
104
| 1200 | [ Minimum Absolute Difference] ( https://leetcode.com/problems/minimum-absolute-difference/ ) | [ Python] ( ./python/SmallestDifference.py ) | O(n) | O(1) | Easy | Array |
@@ -201,7 +200,7 @@ Check out ---> [Sample PR](https://github.com/codedecks-in/LeetCode-Solutions/pu
201
200
202
201
| # | Title | Solution | Time | Space | Difficulty | Tag | Video Explanation |
203
202
| --- | ------------------------------------------------------------- | --------------------------------------------------------------- | ------ | ------ | ---------- | --- | ------------------------------------------------------- |
204
- | 001 | [ Two Sum] ( https://leetcode.com/problems/two-sum/ ) | [ Java] ( ./Java/two-sum.java ) <br > [ Python] ( ./Python/1_TwoSum.py ) | _ O(N)_ | _ O(N)_ | Easy | | [ Tutorial] ( https://youtu.be/47xMuvwP7zQ ) |
203
+ | 001 | [ Two Sum] ( https://leetcode.com/problems/two-sum/ ) | [ Java] ( ./Java/two-sum.java ) <br > [ Python] ( ./Python/1_TwoSum.py ) < br > [ C++ ] ( ./C++/two-sum.cpp ) | _ O(N)_ | _ O(N)_ | Easy | | [ Tutorial] ( https://youtu.be/47xMuvwP7zQ ) |
205
204
| 242 | [ Valid Anagram] ( https://leetcode.com/problems/valid-anagram/ ) | [ Java] ( ./Java/valid-anagram.java ) | _ O(n)_ | _ O(1)_ | Easy | | [ Tutorial] ( https://www.youtube.com/watch?v=sbX1Ze9lNQE ) |
206
205
| 146 | [ LRU Cache] ( https://leetcode.com/problems/lru-cache/ ) | [ Java] ( ./Java/LRU-Cache.java ) | | | Medium | | |
207
206
| 217 | [ Contains Duplicate] ( https://leetcode.com/problems/contains-duplicate/ ) | [ Python] ( ./Python/contains-duplicate.py ) | _ O(n)_ | _ O(n)_ | | |
You can’t perform that action at this time.
0 commit comments