# 29.06.2025
[1498. Number of Subsequences That Satisfy the Given Sum Condition](https://leetcode.com/problems/number-of-subsequences-that-satisfy-the-given-sum-condition/description/) medium
Subsequencies target in 0..min+max #medium #binary_search #two_pointers
[1498. Number of Subsequences That Satisfy the Given Sum Condition](https://leetcode.com/problems/number-of-subsequences-that-satisfy-the-given-sum-condition/description/) medium
Subsequencies target in 0..min+max #medium #binary_search #two_pointers
👍2
# 30.06.2025
[594. Longest Harmonious Subsequence](https://leetcode.com/problems/longest-harmonious-subsequence/description) easy
Longest subsequence with max-min=1 #easy #counting #sort #two_pointers
[594. Longest Harmonious Subsequence](https://leetcode.com/problems/longest-harmonious-subsequence/description) easy
Longest subsequence with max-min=1 #easy #counting #sort #two_pointers
👍2
# 1.07.2025
[3330. Find the Original Typed String I](https://leetcode.com/problems/find-the-original-typed-string-i/description/) easy
ways to remove duplicates #easy #counting
[3330. Find the Original Typed String I](https://leetcode.com/problems/find-the-original-typed-string-i/description/) easy
ways to remove duplicates #easy #counting
👍2
# 2.07.2025
[3333. Find the Original Typed String II](https://leetcode.com/problems/find-the-original-typed-string-ii/description/) hard
ways to remove duplicates, preserve length at least k #hard #dp
[3333. Find the Original Typed String II](https://leetcode.com/problems/find-the-original-typed-string-ii/description/) hard
ways to remove duplicates, preserve length at least k #hard #dp
👍1
# 3.07.2025
[3304. Find the K-th Character in String Game I](https://leetcode.com/problems/find-the-k-th-character-in-string-game-i/description/) easy
`k`th char after appending rotated self #easy
[3304. Find the K-th Character in String Game I](https://leetcode.com/problems/find-the-k-th-character-in-string-game-i/description/) easy
`k`th char after appending rotated self #easy
👍2
# 4.07.2025
[3307. Find the K-th Character in String Game II](https://leetcode.com/problems/find-the-k-th-character-in-string-game-ii/description) hard
kth char in double+shift by ops[i] string #hard #bit_manipulation
[3307. Find the K-th Character in String Game II](https://leetcode.com/problems/find-the-k-th-character-in-string-game-ii/description) hard
kth char in double+shift by ops[i] string #hard #bit_manipulation
👍2
# 5.07.2025
[1394. Find Lucky Integer in an Array](https://leetcode.com/problems/find-lucky-integer-in-an-array/description)
Max x == freq(x) #easy
[1394. Find Lucky Integer in an Array](https://leetcode.com/problems/find-lucky-integer-in-an-array/description)
Max x == freq(x) #easy
👍2
# 6.07.2025
[1865. Finding Pairs With a Certain Sum](https://leetcode.com/problems/finding-pairs-with-a-certain-sum/description/) medium
Design pairs counter; two lists, one changes #medium #hashmap
[1865. Finding Pairs With a Certain Sum](https://leetcode.com/problems/finding-pairs-with-a-certain-sum/description/) medium
Design pairs counter; two lists, one changes #medium #hashmap
👍2
# 7.07.2025
[1353. Maximum Number of Events That Can Be Attended](https://leetcode.com/problems/maximum-number-of-events-that-can-be-attended/description/) medium
Max attended events #medium #heap
[1353. Maximum Number of Events That Can Be Attended](https://leetcode.com/problems/maximum-number-of-events-that-can-be-attended/description/) medium
Max attended events #medium #heap
👍2
# 8.07.2025
[1751. Maximum Number of Events That Can Be Attended II](https://leetcode.com/problems/maximum-number-of-events-that-can-be-attended-ii/description) hard
Max top k valued intervals #hard #binary_search #dp
[1751. Maximum Number of Events That Can Be Attended II](https://leetcode.com/problems/maximum-number-of-events-that-can-be-attended-ii/description) hard
Max top k valued intervals #hard #binary_search #dp
👍2
# 9.07.2025
[3439. Reschedule Meetings for Maximum Free Time I](https://leetcode.com/problems/reschedule-meetings-for-maximum-free-time-i/description) medium
Max free time after moving k events together #medium #sliding_window
[3439. Reschedule Meetings for Maximum Free Time I](https://leetcode.com/problems/reschedule-meetings-for-maximum-free-time-i/description) medium
Max free time after moving k events together #medium #sliding_window
👍2
# 10.07.2025
[3440. Reschedule Meetings for Maximum Free Time II](https://leetcode.com/problems/reschedule-meetings-for-maximum-free-time-ii/description/) medium
Max free time after moving 1 event #medium #sorting
[3440. Reschedule Meetings for Maximum Free Time II](https://leetcode.com/problems/reschedule-meetings-for-maximum-free-time-ii/description/) medium
Max free time after moving 1 event #medium #sorting
👍2
# 11.07.2025
[2402. Meeting Rooms III](https://leetcode.com/problems/meeting-rooms-iii/description) hard
Most frequent meeting room #hard #heap
[2402. Meeting Rooms III](https://leetcode.com/problems/meeting-rooms-iii/description) hard
Most frequent meeting room #hard #heap
👍3
# 12.07.2025
[1900. The Earliest and Latest Rounds Where Players Compete](https://leetcode.com/problems/the-earliest-and-latest-rounds-where-players-compete/description) hard
First and last round Alice fight Bob #hard #simulation
[1900. The Earliest and Latest Rounds Where Players Compete](https://leetcode.com/problems/the-earliest-and-latest-rounds-where-players-compete/description) hard
First and last round Alice fight Bob #hard #simulation
👍2
# 13.07.2025
[2410. Maximum Matching of Players With Trainers](https://leetcode.com/problems/maximum-matching-of-players-with-trainers/description/) medium
Count trainers for players #medium #sort
[2410. Maximum Matching of Players With Trainers](https://leetcode.com/problems/maximum-matching-of-players-with-trainers/description/) medium
Count trainers for players #medium #sort
👍2
# 14.07.2025
[1290. Convert Binary Number in a Linked List to Integer](https://leetcode.com/problems/convert-binary-number-in-a-linked-list-to-integer/description/) easy
Binary linked list to decimal #easy #linkedlist
[1290. Convert Binary Number in a Linked List to Integer](https://leetcode.com/problems/convert-binary-number-in-a-linked-list-to-integer/description/) easy
Binary linked list to decimal #easy #linkedlist
👍2
# 15.07.2025
[3136. Valid Word](https://leetcode.com/problems/valid-word/description/) easy
Check set of rules #easy
[3136. Valid Word](https://leetcode.com/problems/valid-word/description/) easy
Check set of rules #easy
👍2
# 16.07.2025
[3201. Find the Maximum Length of Valid Subsequence I](https://leetcode.com/problems/find-the-maximum-length-of-valid-subsequence-i/description/) medium
Longest same-pair-parity subsequence #medium #greedy
[3201. Find the Maximum Length of Valid Subsequence I](https://leetcode.com/problems/find-the-maximum-length-of-valid-subsequence-i/description/) medium
Longest same-pair-parity subsequence #medium #greedy
👍2
# 17.07.2025
[3202. Find the Maximum Length of Valid Subsequence II](https://leetcode.com/problems/find-the-maximum-length-of-valid-subsequence-ii/description) medium
Longest same-pair-k-parity subsequence #medium #dp
[3202. Find the Maximum Length of Valid Subsequence II](https://leetcode.com/problems/find-the-maximum-length-of-valid-subsequence-ii/description) medium
Longest same-pair-k-parity subsequence #medium #dp
👍2
# 18.07.2025
[2163. Minimum Difference in Sums After Removal of Elements](https://leetcode.com/problems/minimum-difference-in-sums-after-removal-of-elements/description/) hard
Min first half - second half after removing n/3 #hard #heap
[2163. Minimum Difference in Sums After Removal of Elements](https://leetcode.com/problems/minimum-difference-in-sums-after-removal-of-elements/description/) hard
Min first half - second half after removing n/3 #hard #heap
👍2❤1