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
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -139,6 +139,7 @@ This is a repo to store my leetcode solutions but I went a bit Schizo with it an
139
139
| 179. Largest Number |[🔗](https://leetcode.romitsagu.com/solutions/179/)|| Array, String, Greedy, Sorting |
140
140
| 181. Employees Earning More Than Their Managers |[🔗](https://leetcode.romitsagu.com/solutions/181/)|| Database |
| 183. Customers Who Never Order |[🔗](https://leetcode.romitsagu.com/solutions/183/)|| Database |
142
143
| 187. Repeated Dna Sequences |[🔗](https://leetcode.romitsagu.com/solutions/187/)|| Hash Table, String, Bit Manipulation, Sliding Window, Rolling Hash, Hash Function |
143
144
| 190. Reverse Bits |[🔗](https://leetcode.romitsagu.com/solutions/190/)|| Divide and Conquer, Bit Manipulation |
144
145
| 191. Number Of 1 Bits |[🔗](https://leetcode.romitsagu.com/solutions/191/)|| Divide and Conquer, Bit Manipulation |
@@ -160,6 +161,8 @@ This is a repo to store my leetcode solutions but I went a bit Schizo with it an
| 321. Create Maximum Number |[🔗](https://leetcode.romitsagu.com/solutions/321/)|| Array, Two Pointers, Stack, Greedy, Monotonic Stack |
165
+
| 324. Wiggle Sort II |[🔗](https://leetcode.romitsagu.com/solutions/324/)|| Array, Divide and Conquer, Greedy, Sorting, Quickselect |
163
166
| 326. Power Of Three |[🔗](https://leetcode.romitsagu.com/solutions/326/)|| Math, Recursion |
164
167
| 327. Count Of Range Sum |[🔗](https://leetcode.romitsagu.com/solutions/327/)|| Array, Binary Search, Divide and Conquer, Binary Indexed Tree, Segment Tree, Merge Sort, Ordered Set |
165
168
| 338. Counting Bits |[🔗](https://leetcode.romitsagu.com/solutions/338/)|| Dynamic Programming, Bit Manipulation |
@@ -178,11 +181,13 @@ This is a repo to store my leetcode solutions but I went a bit Schizo with it an
| 401. Binary Watch |[🔗](https://leetcode.romitsagu.com/solutions/401/)|| Backtracking, Bit Manipulation |
180
183
| 405. Convert A Number To Hexadecimal |[🔗](https://leetcode.romitsagu.com/solutions/405/)|| Math, String, Bit Manipulation |
184
+
| 410. Split Array Largest Sum |[🔗](https://leetcode.romitsagu.com/solutions/410/)|| Array, Binary Search, Dynamic Programming, Greedy, Prefix Sum |
181
185
| 421. Maximum Xor Of Two Numbers In An Array |[🔗](https://leetcode.romitsagu.com/solutions/421/)|| Array, Hash Table, Bit Manipulation, Trie |
182
186
| 461. Hamming Distance |[🔗](https://leetcode.romitsagu.com/solutions/461/)|| Bit Manipulation |
183
187
| 464. Can I Win |[🔗](https://leetcode.romitsagu.com/solutions/464/)|| Math, Dynamic Programming, Bit Manipulation, Memoization, Game Theory, Bitmask |
184
188
| 473. Matchsticks To Square |[🔗](https://leetcode.romitsagu.com/solutions/473/)|| Array, Dynamic Programming, Backtracking, Bit Manipulation, Bitmask |
185
189
| 476. Number Complement |[🔗](https://leetcode.romitsagu.com/solutions/476/)|| Bit Manipulation |
190
+
| 477. Total Hamming Distance |[🔗](https://leetcode.romitsagu.com/solutions/477/)|| Array, Math, Bit Manipulation |
| 567. Permutation In String |[🔗](https://leetcode.romitsagu.com/solutions/567/)|| Hash Table, Two Pointers, String, Sliding Window |
@@ -243,10 +248,12 @@ This is a repo to store my leetcode solutions but I went a bit Schizo with it an
243
248
| 2006. Find The Student That Will Replace The Chalk |[🔗](https://leetcode.romitsagu.com/solutions/2006/)|| Array, Binary Search, Simulation, Prefix Sum |
244
249
| 2023. Design Movie Rental System |[🔗](https://leetcode.romitsagu.com/solutions/2023/)|| Array, Hash Table, Design, Heap (Priority Queue), Ordered Set |
245
250
| 2076. Sum Of Digits Of String After Convert |[🔗](https://leetcode.romitsagu.com/solutions/2076/)|| String, Simulation |
251
+
| 2096. Find The Longest Valid Obstacle Course At Each Position |[🔗](https://leetcode.romitsagu.com/solutions/2096/)|| Array, Binary Search, Binary Indexed Tree |
246
252
| 2174. Next Greater Numerically Balanced Number |[🔗](https://leetcode.romitsagu.com/solutions/2174/)|| Hash Table, Math, Backtracking, Counting, Enumeration |
247
253
| 2229. Maximum Fruits Harvested After At Most K Steps |[🔗](https://leetcode.romitsagu.com/solutions/2229/)|| Array, Binary Search, Sliding Window, Prefix Sum |
248
254
| 2307. Replace Non Coprime Numbers In Array |[🔗](https://leetcode.romitsagu.com/solutions/2307/)|| Array, Math, Stack, Number Theory |
249
255
| 2316. Count Hills And Valleys In An Array |[🔗](https://leetcode.romitsagu.com/solutions/2316/)|| Array |
256
+
| 2324. Find Triangular Sum Of An Array |[🔗](https://leetcode.romitsagu.com/solutions/2324/)|| Array, Math, Simulation, Combinatorics |
250
257
| 2346. Largest 3 Same Digit Number In String |[🔗](https://leetcode.romitsagu.com/solutions/2346/)|| String |
251
258
| 2408. Number Of People Aware Of A Secret |[🔗](https://leetcode.romitsagu.com/solutions/2408/)|| Dynamic Programming, Queue, Simulation |
252
259
| 2429. Design A Food Rating System |[🔗](https://leetcode.romitsagu.com/solutions/2429/)|| Array, Hash Table, String, Design, Heap (Priority Queue), Ordered Set |
| 183. Customers Who Never Order |[🔗](https://leetcode.romitsagu.com/solutions/183/)| <spanstyle="background-color:#ffffff1a; color:#46c6c2; padding:2px6px; border-radius:6px;">Easy</span> | Database |
142
143
| 187. Repeated Dna Sequences |[🔗](https://leetcode.romitsagu.com/solutions/187/)| <spanstyle="background-color:#ffffff1a; color:#fac31d; padding:2px6px; border-radius:6px;">Medium</span> | Hash Table, String, Bit Manipulation, Sliding Window, Rolling Hash, Hash Function |
143
144
| 190. Reverse Bits |[🔗](https://leetcode.romitsagu.com/solutions/190/)| <spanstyle="background-color:#ffffff1a; color:#46c6c2; padding:2px6px; border-radius:6px;">Easy</span> | Divide and Conquer, Bit Manipulation |
144
145
| 191. Number Of 1 Bits |[🔗](https://leetcode.romitsagu.com/solutions/191/)| <spanstyle="background-color:#ffffff1a; color:#46c6c2; padding:2px6px; border-radius:6px;">Easy</span> | Divide and Conquer, Bit Manipulation |
@@ -160,6 +161,8 @@ This is a repo to store my leetcode solutions but I went a bit Schizo with it an
| 321. Create Maximum Number |[🔗](https://leetcode.romitsagu.com/solutions/321/)| <spanstyle="background-color:#ffffff1a; color:#f8615c; padding:2px6px; border-radius:6px;">Hard</span> | Array, Two Pointers, Stack, Greedy, Monotonic Stack |
165
+
| 324. Wiggle Sort II |[🔗](https://leetcode.romitsagu.com/solutions/324/)| <spanstyle="background-color:#ffffff1a; color:#fac31d; padding:2px6px; border-radius:6px;">Medium</span> | Array, Divide and Conquer, Greedy, Sorting, Quickselect |
163
166
| 326. Power Of Three |[🔗](https://leetcode.romitsagu.com/solutions/326/)| <spanstyle="background-color:#ffffff1a; color:#46c6c2; padding:2px6px; border-radius:6px;">Easy</span> | Math, Recursion |
164
167
| 327. Count Of Range Sum |[🔗](https://leetcode.romitsagu.com/solutions/327/)| <spanstyle="background-color:#ffffff1a; color:#f8615c; padding:2px6px; border-radius:6px;">Hard</span> | Array, Binary Search, Divide and Conquer, Binary Indexed Tree, Segment Tree, Merge Sort, Ordered Set |
| 405. Convert A Number To Hexadecimal |[🔗](https://leetcode.romitsagu.com/solutions/405/)| <spanstyle="background-color:#ffffff1a; color:#46c6c2; padding:2px6px; border-radius:6px;">Easy</span> | Math, String, Bit Manipulation |
184
+
| 410. Split Array Largest Sum |[🔗](https://leetcode.romitsagu.com/solutions/410/)| <spanstyle="background-color:#ffffff1a; color:#f8615c; padding:2px6px; border-radius:6px;">Hard</span> | Array, Binary Search, Dynamic Programming, Greedy, Prefix Sum |
181
185
| 421. Maximum Xor Of Two Numbers In An Array |[🔗](https://leetcode.romitsagu.com/solutions/421/)| <spanstyle="background-color:#ffffff1a; color:#fac31d; padding:2px6px; border-radius:6px;">Medium</span> | Array, Hash Table, Bit Manipulation, Trie |
| 567. Permutation In String |[🔗](https://leetcode.romitsagu.com/solutions/567/)| <spanstyle="background-color:#ffffff1a; color:#fac31d; padding:2px6px; border-radius:6px;">Medium</span> | Hash Table, Two Pointers, String, Sliding Window |
@@ -243,10 +248,12 @@ This is a repo to store my leetcode solutions but I went a bit Schizo with it an
243
248
| 2006. Find The Student That Will Replace The Chalk |[🔗](https://leetcode.romitsagu.com/solutions/2006/)| <spanstyle="background-color:#ffffff1a; color:#fac31d; padding:2px6px; border-radius:6px;">Medium</span> | Array, Binary Search, Simulation, Prefix Sum |
244
249
| 2023. Design Movie Rental System |[🔗](https://leetcode.romitsagu.com/solutions/2023/)| <spanstyle="background-color:#ffffff1a; color:#f8615c; padding:2px6px; border-radius:6px;">Hard</span> | Array, Hash Table, Design, Heap (Priority Queue), Ordered Set |
245
250
| 2076. Sum Of Digits Of String After Convert |[🔗](https://leetcode.romitsagu.com/solutions/2076/)| <spanstyle="background-color:#ffffff1a; color:#46c6c2; padding:2px6px; border-radius:6px;">Easy</span> | String, Simulation |
251
+
| 2096. Find The Longest Valid Obstacle Course At Each Position |[🔗](https://leetcode.romitsagu.com/solutions/2096/)| <spanstyle="background-color:#ffffff1a; color:#f8615c; padding:2px6px; border-radius:6px;">Hard</span> | Array, Binary Search, Binary Indexed Tree |
246
252
| 2174. Next Greater Numerically Balanced Number |[🔗](https://leetcode.romitsagu.com/solutions/2174/)| <spanstyle="background-color:#ffffff1a; color:#fac31d; padding:2px6px; border-radius:6px;">Medium</span> | Hash Table, Math, Backtracking, Counting, Enumeration |
247
253
| 2229. Maximum Fruits Harvested After At Most K Steps |[🔗](https://leetcode.romitsagu.com/solutions/2229/)| <spanstyle="background-color:#ffffff1a; color:#f8615c; padding:2px6px; border-radius:6px;">Hard</span> | Array, Binary Search, Sliding Window, Prefix Sum |
248
254
| 2307. Replace Non Coprime Numbers In Array |[🔗](https://leetcode.romitsagu.com/solutions/2307/)| <spanstyle="background-color:#ffffff1a; color:#f8615c; padding:2px6px; border-radius:6px;">Hard</span> | Array, Math, Stack, Number Theory |
249
255
| 2316. Count Hills And Valleys In An Array |[🔗](https://leetcode.romitsagu.com/solutions/2316/)| <spanstyle="background-color:#ffffff1a; color:#46c6c2; padding:2px6px; border-radius:6px;">Easy</span> | Array |
256
+
| 2324. Find Triangular Sum Of An Array |[🔗](https://leetcode.romitsagu.com/solutions/2324/)| <spanstyle="background-color:#ffffff1a; color:#fac31d; padding:2px6px; border-radius:6px;">Medium</span> | Array, Math, Simulation, Combinatorics |
250
257
| 2346. Largest 3 Same Digit Number In String |[🔗](https://leetcode.romitsagu.com/solutions/2346/)| <spanstyle="background-color:#ffffff1a; color:#46c6c2; padding:2px6px; border-radius:6px;">Easy</span> | String |
251
258
| 2408. Number Of People Aware Of A Secret |[🔗](https://leetcode.romitsagu.com/solutions/2408/)| <spanstyle="background-color:#ffffff1a; color:#fac31d; padding:2px6px; border-radius:6px;">Medium</span> | Dynamic Programming, Queue, Simulation |
252
259
| 2429. Design A Food Rating System |[🔗](https://leetcode.romitsagu.com/solutions/2429/)| <spanstyle="background-color:#ffffff1a; color:#fac31d; padding:2px6px; border-radius:6px;">Medium</span> | Array, Hash Table, String, Design, Heap (Priority Queue), Ordered Set |
0 commit comments