@@ -68,7 +68,6 @@ Check out ---> [Sample PR](https://github.com/codedecks-in/LeetCode-Solutions/pu
68
68
| # | Title | Solution | Time | Space | Difficulty | Tag | Note |
69
69
| ---- | --------------------------------------------------------------------- | -------------------------------------------------------------------------- | ------ | ------ | ---------- | --- | --------- |
70
70
| 0136 | [ Single Number] ( https://leetcode.com/problems/single-number/ ) | [ Java] ( ./Java/single-number.java ) <br > [ Python] ( ./Python/single-number.py ) | _ O(n)_ | _ O(1)_ | Easy | | Using XOR |
71
- | 0137 | [ Single Number II] ( https://leetcode.com/problems/single-number-ii/ ) | | _ O(n)_ | _ O(1)_ | Medium | | |
72
71
| 0260 | [ Single Number III] ( https://leetcode.com/problems/single-number-iii/ ) | [ Python] ( ./Python/single-number-iii.py ) | _ O(n)_ | _ O(1)_ | Medium | | |
73
72
| 0520 | [ Detect Capital Use] ( https://leetcode.com/problems/detect-capital/ ) | [ Python] ( ./Python/detect-capital.py ) | _ O(n)_ | _ O(1)_ | Easy | | |
74
73
@@ -84,7 +83,7 @@ Check out ---> [Sample PR](https://github.com/codedecks-in/LeetCode-Solutions/pu
84
83
| --- | ---------------------------------------------------------------------- | ---------------------------------------------- | ---------- | ------ | ---------- | --------- | ---- |
85
84
| 56 | [ Merge Intervals] ( https://leetcode.com/problems/merge-intervals ) | [ Python] ( ./Python/56_MergeIntervals.py ) | _ O(nlogn)_ | _ O(n)_ | Medium | Intervals | |
86
85
| 697 | [ Degree of an Array] ( https://leetcode.com/problems/degree-of-an-array ) | [ Java] ( ./Java/Degree-of-an-Array ) | _ O(n)_ | _ O(n)_ | Easy | Array | |
87
- | 697 | [ Duplicate Zeroes] ( https://leetcode.com/problems/duplicate-zeros/ ) | [ JavaScript] ( ./JavaScript/Duplicate-Zeroes.js ) | _ O(n)_ | _ O(n)_ | Easy | Array | |
86
+ | 1089 | [ Duplicate Zeroes] ( https://leetcode.com/problems/duplicate-zeros/ ) | [ JavaScript] ( ./JavaScript/Duplicate-Zeroes.js ) | _ O(n)_ | _ O(n)_ | Easy | Array | |
88
87
| 1502 | [ Can Make Arithmetic Progression From Sequence] ( https://leetcode.com/problems/can-make-arithmetic-progression-from-sequence/ ) | [ Java] ( ./Java/can-make-arithmetic-progression-from-sequence.java ) | _ O(n)_ | _ O(1)_ | Easy | Array | |
89
88
90
89
@@ -169,7 +168,7 @@ Check out ---> [Sample PR](https://github.com/codedecks-in/LeetCode-Solutions/pu
169
168
170
169
| # | Title | Solution | Time | Space | Difficulty | Tag | Note |
171
170
| --- | --------------------------------------------------------------------------------------------- | --------------------------------------------------- | -------- | ------ | ---------- | --- | ---------------- |
172
- | 5 | [ Longest Palindromic Substring] ( https://leetcode.com/problems/longest-palindromic-substring/ ) | [ Python] ( ./Python/5_LongestPalindromicSubstring.py ) | _ O(N^2)_ | _ O(N)_ | Medium | | Expand the Wings |
171
+ | 005 | [ Longest Palindromic Substring] ( https://leetcode.com/problems/longest-palindromic-substring/ ) | [ Python] ( ./Python/5_LongestPalindromicSubstring.py ) | _ O(N^2)_ | _ O(N)_ | Medium | | Expand the Wings |
173
172
174
173
<br />
175
174
<div align =" right " >
@@ -191,18 +190,6 @@ Check out ---> [Sample PR](https://github.com/codedecks-in/LeetCode-Solutions/pu
191
190
</div >
192
191
<br />
193
192
194
- ## Two Pointer
195
-
196
- | # | Title | Solution | Time | Space | Difficulty | Tag | Note |
197
- | --- | --------------------------------------------------------------------------------------------- | --------------------------------------------------- | -------- | ------ | ---------- | --- | ---------------- |
198
- | 5 | [ Longest Palindromic Substring] ( https://leetcode.com/problems/longest-palindromic-substring/ ) | [ Python] ( ./Python/5_LongestPalindromicSubstring.py ) | _ O(N^2)_ | _ O(N)_ | Medium | | Expand the Wings |
199
-
200
- <br />
201
- <div align =" right " >
202
- <b><a href="#algorithms">⬆️ Back to Top</a></b>
203
- </div >
204
- <br />
205
-
206
193
## BackTracking
207
194
208
195
| # | Title | Solution | Time | Space | Difficulty | Tag | Note |
0 commit comments