Skip to content

kyomel/list-problems-SE-Growth

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

289 Commits
 
 
 
 

Repository files navigation

List Problems SE-Growth

This is list problems for practice SE Growth Community members. Problem will delivered at Monday-Friday.

Solutions

You can find solutions for the problems in the following language-specific folders:

Please refer to the read.txt file in each folder for specific instructions on contributing solutions in that language.

Week-1(Array, Hash, Strings):

Day Date Problem
1 13/12/2024 https://leetcode.com/problems/find-closest-number-to-zero/description/
2 14/12/2024 https://leetcode.com/problems/valid-anagram/description/
3 15/12/2024 https://leetcode.com/problems/best-time-to-buy-and-sell-stock/description/
4 16/12/2024 https://leetcode.com/problems/longest-consecutive-sequence/description/
5 17/12/2024 https://leetcode.com/problems/summary-ranges/description/
6 18/12/2024 https://leetcode.com/problems/contains-duplicate/description/

Week-2(2 Pointers):

Day Date Problem
7 19/12/2024 https://leetcode.com/problems/valid-palindrome/description/
8 20/12/2024 https://leetcode.com/problems/sort-colors/description/
9 23/12/2024 https://leetcode.com/problems/two-sum-ii-input-array-is-sorted/description/
10 24/12/2024 https://leetcode.com/problems/container-with-most-water/description/
11 25/12/2024 https://leetcode.com/problems/partition-list/description/

Week-3(Stacks):

Day Date Problem
12 26/12/2024 https://leetcode.com/problems/generate-parentheses/description/
13 27/12/2024 https://leetcode.com/problems/valid-parentheses/description/
14 30/12/2024 https://leetcode.com/problems/implement-queue-using-stacks/description/
15 31/12/2024 https://leetcode.com/problems/to-be-or-not-to-be/description/
16 1/1/2025 https://leetcode.com/problems/baseball-game/description/

Week-4(Binary Search):

Day Date Problem
17 2/1/2025 https://leetcode.com/problems/binary-search/description/
18 3/1/2025 https://leetcode.com/problems/first-bad-version/description/
19 6/1/2025 https://leetcode.com/problems/valid-perfect-square/description/
20 7/1/2025 https://leetcode.com/problems/search-insert-position/description/
21 8/1/2025 https://leetcode.com/problems/koko-eating-bananas/description/

Week-5(Sliding Window):

Day Date Problem
22 9/1/2025 https://leetcode.com/problems/maximum-average-subarray-i/description/
23 10/1/2025 https://leetcode.com/problems/max-consecutive-ones-iii/description/
24 13/1/2025 https://leetcode.com/problems/longest-substring-without-repeating-characters/description/
25 14/1/2025 https://leetcode.com/problems/minimum-size-subarray-sum/description/
26 15/1/2025 https://leetcode.com/problems/permutation-in-string/description/

Week-6(Linked List):

Day Date Problem
27 16/1/2025 https://leetcode.com/problems/linked-list-cycle/description/
28 17/1/2025 https://leetcode.com/problems/reverse-linked-list/description/
29 20/1/2025 https://leetcode.com/problems/merge-two-sorted-lists/description/
30 21/1/2025 https://leetcode.com/problems/remove-duplicates-from-sorted-list/description/
31 22/1/2025 https://leetcode.com/problems/add-two-numbers/description/

Week-7(Trees):

Day Date Problem
32 23/1/2025 https://leetcode.com/problems/invert-binary-tree/description/
33 24/1/2025 https://leetcode.com/problems/maximum-depth-of-binary-tree/description/
34 27/1/2025 https://leetcode.com/problems/path-sum/description/
35 28/1/2025 https://leetcode.com/problems/same-tree/description/
36 29/1/2025 https://leetcode.com/problems/kth-smallest-element-in-a-bst/description/

Week-8(Trie):

Day Date Problem
37 30/1/2025 https://leetcode.com/problems/implement-trie-prefix-tree/description/
38 31/1/2025 https://leetcode.com/problems/count-prefix-and-suffix-pairs-i/description/
39 3/2/2025 https://leetcode.com/problems/maximum-strong-pair-xor-i/description/
40 4/2/2025 https://leetcode.com/problems/minimum-number-of-valid-strings-to-form-target-i/description/
41 5/2/2025 https://leetcode.com/problems/extra-characters-in-a-string/description/

Week-9(Backtracking):

Day Date Problem
42 6/2/2025 https://leetcode.com/problems/subsets/description/
43 7/2/2025 https://leetcode.com/problems/combination-sum/description/
44 10/2/2025 https://leetcode.com/problems/permutations/description/
45 11/2/2025 https://leetcode.com/problems/word-search/description/
46 12/2/2025 https://leetcode.com/problems/palindrome-partitioning/description/

Week-10(Heap/Priority Queue)

Day Date Problem
47 13/2/2025 https://leetcode.com/problems/kth-largest-element-in-a-stream/description/
48 14/2/2025 https://leetcode.com/problems/last-stone-weight/description/
49 17/2/2025 https://leetcode.com/problems/relative-ranks/description/
50 18/2/2025 https://leetcode.com/problems/kth-largest-element-in-an-array/description/
51 19/2/2025 https://leetcode.com/problems/delete-greatest-value-in-each-row/description/

Week-11(Graphs)

Day Date Problem
52 20/2/2025 https://leetcode.com/problems/find-the-town-judge/description/
53 21/2/2025 https://leetcode.com/problems/number-of-islands/description/
54 24/2/2025 https://leetcode.com/problems/find-center-of-star-graph/description/
55 25/2/2025 https://leetcode.com/problems/max-area-of-island/description/
56 26/2/2025 https://leetcode.com/problems/course-schedule/description/

Week-12(Dynamic Programming)

Day Date Problem
57 27/2/2025 https://leetcode.com/problems/climbing-stairs/description/
58 28/2/2025 https://leetcode.com/problems/house-robber/description/
59 3/3/2025 https://leetcode.com/problems/min-cost-climbing-stairs/
60 4/3/2025 https://leetcode.com/problems/maximum-repeating-substring/description/
61 5/3/2025 https://leetcode.com/problems/divisor-game/description/

Week-13(Bit Manipulation)

Day Date Problem
62 6/3/2025 https://leetcode.com/problems/single-number/description/
63 7/3/2025 https://leetcode.com/problems/reverse-bits/description/
64 10/3/2025 https://leetcode.com/problems/counting-bits/description/
65 11/3/2025 https://leetcode.com/problems/sum-of-two-integers/description/
66 12/3/2025 https://leetcode.com/problems/reverse-integer/description/

Week-14(Greedy)

Day Date Problem
67 13/3/2025 https://leetcode.com/problems/assign-cookies/description/
68 14/3/2025 https://leetcode.com/problems/maximum-subarray/description/
69 17/3/2025 https://leetcode.com/problems/longest-palindrome/description/
70 18/3/2025 https://leetcode.com/problems/hand-of-straights/description/
71 19/3/2025 https://leetcode.com/problems/gas-station/description/

Week-15(Math)

Day Date Problem
72 20/3/2025 https://leetcode.com/problems/happy-number/description/
73 21/3/2025 https://leetcode.com/problems/add-digits/description/
74 24/3/2025 https://leetcode.com/problems/plus-one/description/
75 25/3/2025 https://leetcode.com/problems/detect-squares/description/
76 26/3/2025 https://leetcode.com/problems/nim-game/description/

Week-16(Random)

Day Date Problem
77 27/3/2025 https://leetcode.com/problems/product-of-array-except-self/description/
78 28/3/2025 https://leetcode.com/problems/daily-temperatures/description/
79 31/3/2025 https://leetcode.com/problems/car-fleet/description/
80 1/4/2025 https://leetcode.com/problems/find-the-duplicate-number/description/
81 2/4/2025 https://leetcode.com/problems/balanced-binary-tree/description/

Week-17(Random)

Day Date Problem
82 3/4/2025 https://leetcode.com/problems/flood-fill/description/
83 4/4/2025 https://leetcode.com/problems/add-binary/description/
84 7/4/2025 https://leetcode.com/problems/network-delay-time/description/
85 8/4/2025 https://leetcode.com/problems/powx-n/description/
86 9/4/2025 https://leetcode.com/problems/subarray-sums-divisible-by-k/description/

Week-18(Random)

Day Date Problem
87 10/4/2025 https://leetcode.com/problems/basic-calculator-ii/description/
88 11/4/2025 https://leetcode.com/problems/left-and-right-sum-differences/description/
89 14/4/2025 https://leetcode.com/problems/find-the-middle-index-in-array/description/
90 15/4/2025 https://leetcode.com/problems/maximum-number-of-balloons/description/
91 16/4/2025 https://leetcode.com/problems/unique-paths/description/

Week-19(Random)

Day Date Problem
92 17/4/2025 https://leetcode.com/problems/fibonacci-number/description/
93 18/4/2025 https://leetcode.com/problems/coin-change/description/
94 21/4/2025 https://leetcode.com/problems/zigzag-conversion/description/
95 22/4/2025 https://leetcode.com/problems/isomorphic-strings/description/
96 23/4/2025 https://leetcode.com/problems/count-complete-tree-nodes/description/

Week-20(Random)

Day Date Problem
97 24/4/2025 https://leetcode.com/problems/convert-sorted-array-to-binary-search-tree/description/
98 25/4/2025 https://leetcode.com/problems/average-of-levels-in-binary-tree/description/
99 28/4/2025 https://leetcode.com/problems/surrounded-regions/description/
100 29/4/2025 https://leetcode.com/problems/serialize-and-deserialize-binary-tree/description/
101 30/4/2025 https://leetcode.com/problems/diameter-of-binary-tree/description/

Week-21(Random)

Day Date Problem
102 1/5/2025 https://www.hackerrank.com/challenges/append-and-delete/problem
103 2/5/2025 https://www.hackerrank.com/challenges/equality-in-a-array/problem
104 5/5/2025 https://www.hackerrank.com/challenges/picking-numbers/problem
105 6/5/2025 https://www.hackerrank.com/challenges/array-left-rotation/problem
106 7/5/2025 https://www.hackerrank.com/challenges/lilys-homework/problem

Week-22(Random)

Day Date Problem
107 8/5/2025 https://www.hackerrank.com/challenges/camelcase/problem
108 10/5/2025 https://www.hackerrank.com/challenges/electronics-shop/problem
109 12/5/2025 https://www.hackerrank.com/challenges/strange-advertising/problem
110 13/5/2025 https://www.hackerrank.com/challenges/climbing-the-leaderboard/problem
111 14/5/2025 https://www.hackerrank.com/challenges/birthday-cake-candles/problem

Week-23(Random)

Day Date Problem
112 15/5/2025 https://www.hackerrank.com/challenges/compare-two-linked-lists/problem
113 16/5/2025 https://www.hackerrank.com/challenges/flatland-space-stations/problem
114 19/5/2025 https://www.hackerrank.com/challenges/compare-the-triplets/problem
115 20/5/2025 https://www.hackerrank.com/challenges/handshake/problem
116 21/5/2025 https://www.hackerrank.com/challenges/restaurant/problem

Week-24(Random)

Day Date Problem
117 22/5/2025 https://www.hackerrank.com/challenges/grading/problem
118 23/5/2025 https://www.hackerrank.com/challenges/cats-and-a-mouse/problem
119 26/5/2025 https://www.hackerrank.com/challenges/minimum-distances/problem
120 27/5/2025 https://www.hackerrank.com/challenges/big-sorting/problem
121 28/5/2025 https://www.hackerrank.com/challenges/binary-search-tree-lowest-common-ancestor/problem

Week-25(Random)

Day Date Problem
122 29/5/2025 https://www.hackerrank.com/challenges/filling-jars/problem
123 30/5/2025 https://www.hackerrank.com/challenges/bigger-is-greater/problem
124 2/6/2025 https://www.hackerrank.com/challenges/runningtime/problem
125 3/6/2025 https://www.hackerrank.com/challenges/harry-potter-and-the-floating-rocks/problem
126 4/6/2025 https://www.hackerrank.com/challenges/print-the-elements-of-a-linked-list-in-reverse/problem

Week-26(Random)

Day Date Problem
127 5/6/2025 https://www.hackerrank.com/challenges/is-fibo/problem
128 6/6/2025 https://www.hackerrank.com/challenges/richie-rich/problem
129 9/6/2025 https://www.hackerrank.com/challenges/staircase/problem
130 10/6/2025 https://www.hackerrank.com/challenges/apple-and-orange/problem
131 11/6/2025 https://www.hackerrank.com/challenges/breaking-best-and-worst-records/problem

Week-27(Random)

Day Date Problem
132 12/6/2025 https://www.hackerrank.com/challenges/time-conversion/problem
133 13/6/2025 https://www.hackerrank.com/challenges/drawing-book/problem
134 16/6/2025 https://www.hackerrank.com/challenges/migratory-birds/problem
135 17/6/2025 https://www.hackerrank.com/challenges/sock-merchant/problem
136 18/6/2025 https://www.hackerrank.com/challenges/beautiful-days-at-the-movies/problem

Week-28(Random)

Day Date Problem
137 19/6/2025 https://www.hackerrank.com/challenges/beautiful-pairs/problem
138 20/6/2025 https://www.hackerrank.com/challenges/fair-rations/problem
139 23/6/2025 https://www.hackerrank.com/challenges/equality-in-a-array/problem
140 24/6/2025 https://www.hackerrank.com/challenges/strong-password/problem
141 25/6/2025 https://www.hackerrank.com/challenges/funny-string/problem

Week-29(Random)

Day Date Problem
142 26/6/2025 https://www.hackerrank.com/challenges/beautiful-binary-string/problem
143 27/6/2025 https://www.hackerrank.com/challenges/largest-permutation/problem
144 30/6/2025 https://www.hackerrank.com/challenges/gem-stones/problem
145 1/7/2025 https://www.hackerrank.com/challenges/beautiful-triplets/problem
146 2/7/2025 https://www.hackerrank.com/challenges/encryption/problem

Week-30(Random)

Day Date Problem
147 3/7/2025 https://www.hackerrank.com/challenges/larrys-array/problem
148 4/7/2025 https://www.hackerrank.com/challenges/pairs/problem
149 7/7/2025 https://www.hackerrank.com/challenges/the-grid-search/problem
150 8/7/2025 https://www.hackerrank.com/challenges/synchronous-shopping/problem
151 9/7/2025 https://leetcode.com/problems/island-perimeter/description/

Week-31(Random)

Day Date Problem
152 10/7/2025 https://leetcode.com/problems/minimum-cost-for-tickets/description/
153 14/7/2025 https://leetcode.com/problems/move-zeroes/description/
154 15/7/2025 https://leetcode.com/problems/student-attendance-record-i/description/
155 16/7/2025 https://leetcode.com/problems/base-7/description/
156 17/7/2025 https://leetcode.com/problems/distribute-candies/description/

Week-32(Random)

Day Date Problem
157 18/7/2025 https://leetcode.com/problems/goat-latin/description/
158 21/7/2025 https://leetcode.com/problems/binary-gap/description/
159 22/7/2025 https://leetcode.com/problems/detect-capital/description/
160 23/7/2025 https://leetcode.com/problems/find-the-difference/description/
161 24/7/2025 https://leetcode.com/problems/reverse-only-letters/description/

Week-33(Random)

Day Date Problem
162 25/7/2025 https://leetcode.com/problems/swap-salary/description/
163 28/7/2025 https://leetcode.com/problems/find-all-numbers-disappeared-in-an-array/description/
164 29/7/2025 https://leetcode.com/problems/interleaving-string/description/
165 30/7/2025 https://leetcode.com/problems/count-primes/description/
166 31/7/2025 https://leetcode.com/problems/arranging-coins/description/

Week-34(Random)

Day Date Problem
167 1/8/2025 https://leetcode.com/problems/unique-email-addresses/description/
168 4/8/2025 https://leetcode.com/problems/fruit-into-baskets/description/
169 5/8/2025 https://leetcode.com/problems/lru-cache/description/
170 6/8/2025 https://leetcode.com/problems/number-of-equivalent-domino-pairs/description/
171 7/8/2025 https://leetcode.com/problems/divide-intervals-into-minimum-number-of-groups/description/

Week-35(Random)

Day Date Problem
172 8/8/2025 https://leetcode.com/problems/remove-all-adjacent-duplicates-in-string/description/
173 11/8/2025 https://leetcode.com/problems/insertion-sort-list/description/
174 12/8/2025 https://leetcode.com/problems/prime-arrangements/description/
175 13/8/2025 https://leetcode.com/problems/lucky-numbers-in-a-matrix/description/
176 14/8/2025 https://leetcode.com/problems/to-lower-case/description/

Week-36(Random)

Day Date Problem
177 15/8/2025 https://leetcode.com/problems/maximum-gap/description/
178 18/8/2025 https://leetcode.com/problems/image-smoother/description/
179 19/8/2025 https://leetcode.com/problems/additive-number/description/
180 20/8/2025 https://leetcode.com/problems/di-string-match/description/
181 21/8/2025 https://leetcode.com/problems/defanging-an-ip-address/description/

Week-37(Random)

Day Date Problem
182 22/8/2025 https://leetcode.com/problems/count-of-range-sum/description/
183 25/8/2025 https://leetcode.com/problems/height-checker/description/
184 26/8/2025 https://leetcode.com/problems/h-index/description/
185 27/8/2025 https://leetcode.com/problems/finding-3-digit-even-numbers/description/
186 28/8/2025 https://leetcode.com/problems/surface-area-of-3d-shapes/description/

Week-38(Random)

Day Date Problem
187 29/8/2025 https://leetcode.com/problems/duplicate-zeros/description/
188 1/9/2025 https://leetcode.com/problems/triangle/description/
189 2/9/2025 https://leetcode.com/problems/long-pressed-name/description/
190 3/9/2025 https://leetcode.com/problems/keyboard-row/description/
191 4/9/2025 https://leetcode.com/problems/game-of-life/description/

Week-39(Random)

Day Date Problem
192 5/9/2025 https://leetcode.com/problems/unique-morse-code-words/description/
193 8/9/2025 https://leetcode.com/problems/set-mismatch/description/
194 9/9/2025 https://leetcode.com/problems/customer-placing-the-largest-number-of-orders/description/
195 10/9/2025 https://leetcode.com/problems/design-twitter/description/
196 11/9/2025 https://leetcode.com/problems/1-bit-and-2-bit-characters/description/

Week-40(Random)

Day Date Problem
197 12/9/2025 https://leetcode.com/problems/soup-servings/description/
198 15/9/2025 https://leetcode.com/problems/toeplitz-matrix/description/
199 16/9/2025 https://leetcode.com/problems/find-lucky-integer-in-an-array/description/
200 17/9/2025 https://leetcode.com/problems/create-maximum-number/description/
201 18/9/2025 https://leetcode.com/problems/verifying-an-alien-dictionary/description/

Week-41(Random)

Day Date Problem
202 19/9/2025 https://leetcode.com/problems/reformat-the-string/description/
203 22/9/2025 https://leetcode.com/problems/buddy-strings/description/
204 23/9/2025 https://leetcode.com/problems/robot-return-to-origin/description/
205 24/9/2025 https://leetcode.com/problems/symmetric-tree/description/
206 25/9/2025 https://leetcode.com/problems/maximum-score-after-splitting-a-string/description/

Week-42(Random)

Day Date Problem
207 26/9/2025 https://leetcode.com/problems/design-parking-system/description/
208 29/9/2025 https://leetcode.com/problems/final-prices-with-a-special-discount-in-a-shop/description/
209 30/9/2025 https://leetcode.com/problems/check-if-the-sentence-is-pangram/description/
210 1/10/2025 https://leetcode.com/problems/slowest-key/description/
211 2/10/2025 https://leetcode.com/problems/last-visited-integers/description/

Week-43(Random)

Day Date Problem
212 3/10/2025 https://leetcode.com/problems/buy-two-chocolates/description/
213 6/10/2025 https://leetcode.com/problems/furthest-point-from-origin/description/
214 7/10/2025 https://leetcode.com/problems/number-of-changing-keys/description/
215 8/10/2025 https://leetcode.com/problems/total-distance-traveled/description/
216 9/10/2025 https://leetcode.com/problems/utf-8-validation/description/

Week-44(Random)

Day Date Problem
217 10/10/2025 https://leetcode.com/problems/article-views-i/description/
218 13/10/2025 https://leetcode.com/problems/simplify-path/description/
219 14/10/2025 https://leetcode.com/problems/perfect-squares/description/
220 15/10/2025 https://leetcode.com/problems/cousins-in-binary-tree/description/
221 16/10/2025 https://leetcode.com/problems/arithmetic-slices/description/

Week-45(Random)

Day Date Problem
222 17/10/2025 https://leetcode.com/problems/day-of-the-year/description/
223 20/10/2025 https://leetcode.com/problems/lemonade-change/description/
224 21/10/2025 https://leetcode.com/problems/find-winner-on-a-tic-tac-toe-game/description/
225 22/10/2025 https://leetcode.com/problems/integer-break/description/
226 23/10/2025 https://leetcode.com/problems/get-maximum-in-generated-array/description/

Week-46(Random)

Day Date Problem
227 27/10/2025 https://leetcode.com/problems/odd-even-linked-list/description/
228 28/10/2025 https://leetcode.com/problems/destination-city/description/
229 29/10/2025 https://leetcode.com/problems/crawler-log-folder/description/
230 30/10/2025 https://leetcode.com/problems/binary-prefix-divisible-by-5/description/
231 31/10/2025 https://leetcode.com/problems/132-pattern/description/

Week-47(Random)

Day Date Problem
232 3/11/2025 https://leetcode.com/problems/rotate-image/description/
233 4/11/2025 https://leetcode.com/problems/find-mode-in-binary-search-tree/description/
234 5/11/2025 https://leetcode.com/problems/remove-outermost-parentheses/description/
235 6/11/2025 https://leetcode.com/problems/reformat-date/description/
236 7/11/2025 https://leetcode.com/problems/largest-number/description/

Week-48(Random)

Day Date Problem
237 10/11/2025 https://leetcode.com/problems/range-sum-of-bst/description/
238 11/11/2025 https://leetcode.com/problems/binary-tree-level-order-traversal/description/
239 12/11/2025 https://leetcode.com/problems/can-place-flowers/description/
240 13/11/2025 https://leetcode.com/problems/power-of-three/description/
241 14/11/2025 https://leetcode.com/problems/different-ways-to-add-parentheses/description/

Week-49(Random)

Day Date Problem
242 17/11/2025 https://leetcode.com/problems/restore-ip-addresses/description/
243 18/11/2025 https://leetcode.com/problems/license-key-formatting/description/
244 19/11/2025 https://leetcode.com/problems/hamming-distance/description/
245 20/11/2025 https://leetcode.com/problems/flipping-an-image/description/
246 21/11/2025 https://leetcode.com/problems/bulb-switcher/description/

Week-50(Random)

Day Date Problem
247 24/11/2025 https://leetcode.com/problems/surrounded-regions/description/
248 25/11/2025 https://leetcode.com/problems/design-hashset/description/
249 26/11/2025 https://leetcode.com/problems/leaf-similar-trees/description/
250 27/11/2025 https://leetcode.com/problems/text-justification/description/
251 28/11/2025 https://leetcode.com/problems/pacific-atlantic-water-flow/description/

Week-51(Random)

Day Date Problem
252 1/12/2025 https://leetcode.com/problems/edit-distance/description/
253 2/12/2025 https://leetcode.com/problems/convert-binary-number-in-a-linked-list-to-integer/description/
254 3/12/2025 https://leetcode.com/problems/water-bottles/
255 4/12/2025 https://leetcode.com/problems/find-the-pivot-integer/description/
256 5/12/2025 https://leetcode.com/problems/jump-game/description/

Week-52(Random)

Day Date Problem
257 8/12/2025 https://leetcode.com/problems/rotate-array/description/
258 9/12/2025 https://leetcode.com/problems/maximum-69-number/description/
259 10/12/2025 https://leetcode.com/problems/sort-integers-by-the-number-of-1-bits/description/
260 11/12/2025 https://leetcode.com/problems/minimum-time-visiting-all-points/description/
261 12/12/2025 https://leetcode.com/problems/count-numbers-with-unique-digits/description/

Week-53(Random)

Day Date Problem
262 15/12/2025 https://leetcode.com/problems/water-and-jug-problem/description/
263 16/12/2025 https://leetcode.com/problems/calculate-digit-sum-of-a-string/description/
264 17/12/2025 https://leetcode.com/problems/time-needed-to-buy-tickets/description/
265 18/12/2025 https://leetcode.com/problems/rank-transform-of-an-array/description/
266 19/12/2025 https://leetcode.com/problems/delete-node-in-a-linked-list/description/

Week-54(Random)

Day Date Problem
267 22/12/2025 https://leetcode.com/problems/super-ugly-number/description/
268 23/12/2025 https://leetcode.com/problems/truncate-sentence/description/
269 24/12/2025 https://leetcode.com/problems/count-operations-to-obtain-zero/description/
270 25/12/2025 https://leetcode.com/problems/rings-and-rods/description/
271 26/12/2025 https://leetcode.com/problems/evaluate-division/description/

Week-55(Random)

Day Date Problem
272 29/12/2025 https://leetcode.com/problems/mini-parser/description/
273 30/12/2025 https://leetcode.com/problems/generate-a-string-with-characters-that-have-odd-counts/description/
274 31/12/2025 https://leetcode.com/problems/day-of-the-week/description/
275 1/1/2026 https://leetcode.com/problems/frog-jump/description/
276 2/1/2026 https://leetcode.com/problems/decode-the-message/description/

Week-56(Random)

Day Date Problem
277 5/1/2026 https://leetcode.com/problems/nth-digit/description/
278 6/1/2026 https://leetcode.com/problems/find-the-distance-value-between-two-arrays/description/
279 7/1/2026 https://leetcode.com/problems/find-subarrays-with-equal-sum/description/
280 8/1/2026 https://leetcode.com/problems/cells-in-a-range-on-an-excel-sheet/description/
281 9/1/2026 https://leetcode.com/problems/longest-repeating-character-replacement/description/

Week-57(Random)

Day Date Problem
282 12/1/2026 https://leetcode.com/problems/minesweeper/description/
283 13/1/2026 https://leetcode.com/problems/capitalize-the-title/description/
284 14/1/2026 https://leetcode.com/problems/prime-in-diagonal/description/
285 15/1/2026 https://leetcode.com/problems/diagonal-traverse/description/
286 19/1/2026 https://leetcode.com/problems/beautiful-arrangement/description/

Week-58(Random)

Day Date Problem
287 20/1/2026 https://leetcode.com/problems/check-distances-between-same-letters/description/
288 21/1/2026 https://leetcode.com/problems/minimum-number-of-flips-to-reverse-binary-string/description/
289 22/1/2026 https://leetcode.com/problems/merge-similar-items/description/
290 23/1/2026 https://leetcode.com/problems/total-hamming-distance/description/
291 26/1/2026 https://leetcode.com/problems/number-of-boomerangs/description/

Week-58(Random)

Day Date Problem
292 27/1/2026 https://leetcode.com/problems/three-divisors/description/
293 28/1/2026 https://leetcode.com/problems/goal-parser-interpretation/description/
294 29/1/2026 https://leetcode.com/problems/sort-the-people/description/
295 30/1/2026 https://leetcode.com/problems/can-i-win/description/
296 2/2/2026 https://leetcode.com/problems/matchsticks-to-square/description/

Week-59(Random)

Day Date Problem
297 3/2/2026 https://leetcode.com/problems/monotonic-array/description/
298 4/2/2026 https://leetcode.com/problems/thousand-separator/description/
299 5/2/2026 https://leetcode.com/problems/two-out-of-three/description/
300 6/2/2026 https://leetcode.com/problems/sudoku-solver/description/

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors