https://leetcode.com/problems/custom-sort-string/description/
Construct string from
Construct string from
s
using order
#medium👍2
https://leetcode.com/problems/remove-zero-sum-consecutive-nodes-from-linked-list/description/
Remove consequent 0-sum items from a LinkedList #medium
Remove consequent 0-sum items from a LinkedList #medium
👍2
https://leetcode.com/problems/find-the-pivot-integer/description/
Pivot of
Pivot of
1..n
where sum[1..p] == sum[p..n]
. #easy👍3
https://leetcode.com/problems/binary-subarrays-with-sum/description/
Count
Count
goal
-sum subarrays in a 0-1
array #medium👍2
https://leetcode.com/problems/product-of-array-except-self/description/
Array of suffix-prefix products #medium
Array of suffix-prefix products #medium
👍2
https://leetcode.com/problems/contiguous-array/description/
Max length of subarray sum(0) == sum(1) #medium
Max length of subarray sum(0) == sum(1) #medium
👍2
https://leetcode.com/problems/insert-interval/description/
Insert interval into a sorted intervals array #medium
Insert interval into a sorted intervals array #medium
👍2
https://leetcode.com/problems/minimum-number-of-arrows-to-burst-balloons/description/
Count non-intersecting intervals #medium
Count non-intersecting intervals #medium
👍2
https://leetcode.com/problems/task-scheduler/description/
Count CPU cycles if task can't run twice in
Count CPU cycles if task can't run twice in
n
cycles #medium👍3
https://leetcode.com/problems/merge-in-between-linked-lists/description/
Replace a segment in a LinkedList #medium
Replace a segment in a LinkedList #medium
👍1
https://leetcode.com/problems/reorder-list/description/
Reorder Linked List
Reorder Linked List
1->2->3->4->5
-> 1->5->2->4->3
#medium👍2
https://leetcode.com/problems/find-the-duplicate-number/description/
Duplicate single number in
Duplicate single number in
1..n
array, no extra memory #medium👍2
https://leetcode.com/problems/find-all-duplicates-in-an-array/description/
All duplicate numbers of
All duplicate numbers of
1..n
using O(1) memory #medium👍3
https://leetcode.com/problems/first-missing-positive/description/
First number
First number
1..
not presented in the array, O(1) space #hard👍3
https://leetcode.com/problems/subarray-product-less-than-k/description/
Subarrays count with product less than
Subarrays count with product less than
k
#medium👍2🔥1
https://leetcode.com/problems/length-of-longest-subarray-with-at-most-k-frequency/description
Max subarray length with frequencies <=
Max subarray length with frequencies <=
k
#medium👍2
https://leetcode.com/problems/count-subarrays-where-max-element-appears-at-least-k-times/description/
Count subarrays with at least
Count subarrays with at least
k
array max in #medium👍2
https://leetcode.com/problems/subarrays-with-k-different-integers/description/
Count subarrays with
Count subarrays with
k
distinct numbers #hard👍1
https://leetcode.com/problems/count-subarrays-with-fixed-bounds/description/
Count subarrays of range
Count subarrays of range
minK..maxK
#hard👍1