@@ -83,10 +83,12 @@ Check out ---> [Sample PR](https://github.com/codedecks-in/LeetCode-Solutions/pu
83
83
| # | Title | Solution | Time | Space | Difficulty | Tag | Tutorial |
84
84
| ---- | --------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | ------ | ------ | ---------- | --- | ---------------------------------------- |
85
85
| 0136 | [ Single Number] ( https://leetcode.com/problems/single-number/ ) | [ Java] ( ./Java/single-number.java ) <br > [ Python] ( ./Python/single-number.py ) <br > [ C++] ( ./C++/Single-Number.cpp ) | _ O(n)_ | _ O(1)_ | Easy | | Using XOR |
86
+ | 137 | [ Single Number II] ( https://leetcode.com/problems/single-number-ii/ ) | [ Python] ( ./Python/single-number-ii.py ) | _ O(n)_ | _ O(1)_ | Medium | | |
86
87
| 260 | [ Single Number III] ( https://leetcode.com/problems/single-number-iii/ ) | [ Python] ( ./Python/single-number-iii.py ) | _ O(n)_ | _ O(1)_ | Medium | | |
87
88
| 476 | [ Number Complement] ( https://leetcode.com/problems/number-complement/ ) | [ Java] ( ./Java/number-complement.java ) | _ O(1)_ | _ O(1)_ | Easy | | [ Tutorial] ( https://youtu.be/6bp5V-O3zts ) |
88
89
| 520 | [ Detect Capital Use] ( https://leetcode.com/problems/detect-capital/ ) | [ Python] ( ./Python/detect-capital.py ) | _ O(n)_ | _ O(1)_ | Easy | | |
89
90
91
+
90
92
<br />
91
93
<div align =" right " >
92
94
<b><a href="#algorithms">⬆️ Back to Top</a></b>
@@ -119,6 +121,7 @@ Check out ---> [Sample PR](https://github.com/codedecks-in/LeetCode-Solutions/pu
119
121
| 152 | [ Maximum Product Subarray] ( https://leetcode.com/problems/maximum-product-subarray/ ) | [ Javascript] ( ./JavaScript/152.Maximum-Product-Subarray.js ) | O(n) | O(n) | Medium | Array |
120
122
| 073 | [ Set-Matrix-Zeroes] ( https://leetcode.com/problems/set-matrix-zeroes/ ) | [ Java] ( ./Java/set-matrix-zeroes.java ) | O(MN) | O(1) | Medium | Array |
121
123
| 1288 | [ Remove-Covered-Intervals] ( https://leetcode.com/problems/remove-covered-intervals ) | [ C++] ( ./C++/Remove-Covered-Intervals.cpp ) | O(N* N) | O(1) | Medium | Array |
124
+ | 189 | [ Rotate-Array] ( https://leetcode.com/problems/rotate-array/ ) | [ Python] ( ./Python/rotate-array.py ) | O(N) | O(1) | Medium | Array
122
125
123
126
<br />
124
127
<div align =" right " >
@@ -414,6 +417,7 @@ DISCLAIMER: This above mentioned resources have affiliate links, which means if
414
417
| [ Jaseem ck] ( https://github.com/Jaseemck ) <br > <img src =" https://github.com/Optider.png " width =" 100 " height =" 100 " > | India | Python | [ Github] ( https://github.com/Jaseemck ) |
415
418
| [ Ilias Khan] ( https://github.com/IliasKhan ) <br > <img src =" https://avatars3.githubusercontent.com/u/26863936?s=460&u=4501ffba5efd1a7b978416e8e434dff599c85384&v=4 " width =" 100 " height =" 100 " > | India | C++ | [ codechef] ( https://www.codechef.com/users/iliaskhan ) <br > [ Hackerrank] ( ckerrank.com/iliaskhan57 ) <br > [ LeetCode] ( https://leetcode.com/ilias_khan/ ) <br > [ codeforces] ( http://codeforces.com/profile/iliaskhan ) |
416
419
| [ Shamoyeeta Saha] ( https://github.com/Shamoyeeta ) <br > <img src =" https://i.pinimg.com/236x/dc/ef/3a/dcef3abedf0e0761203aaeb85886a6f3--jedi-knight-open-source.jpg " width =" 100 " height =" 100 " > | India | C++ | [ Hackerrank] ( https://www.hackerrank.com/sahashamoyeeta ) <br > [ Github] ( https://github.com/Shamoyeeta ) |
420
+ | [ James Y] ( https://github.com/jameszu ) <br > <img src =" https://avatars0.githubusercontent.com/u/41566813?s=400&u=af77d15517566ea590a316030b4a6d402b0041b6&v=4 " width =" 100 " height =" 100 " > | New Zealand | python | [ Github] ( https://github.com/jameszu ) |
417
421
418
422
<br />
419
423
<div align =" right " >
0 commit comments