On this page
CF Ladder
Week 1
23 February, 2026
https://codeforces.com/contest/2192/problem/B
There are total 4 possible combination, correct combination consider as false combination
https://codeforces.com/contest/1878/problem/C
Not sum of [1, ..., n], consider sum of last k digit
https://codeforces.com/contest/1878/problem/A
https://codeforces.com/contest/1850/problem/D
24 February, 2026
https://codeforces.com/contest/1203/problem/C
List of common divisor shouldn't consider if i == gcd/i
https://codeforces.com/contest/282/problem/A
https://codeforces.com/contest/1475/problem/A
even - even = result_even
even - odd = result_even
here dividing result_even by 2 doesn't produce the odd one, divide the result even by 2^k/n & (n - 1)
https://codeforces.com/contest/1617/problem/B
Approach was right but consider wrong(i, n-i) case instead (i, n-i-1) as another number is 1, it shouldn't be consider
order of printing matter
gcd checking should be begin with 2
https://codeforces.com/problemset/problem/1462/C
https://codeforces.com/contest/26/problem/A
25 February, 2026
https://codeforces.com/contest/2192/problem/A
Intitution was wrong
Frequency count fail for abab
Consider the last and first character
https://codeforces.com/contest/2203/problem/A
26 February, 2026
https://codeforces.com/problemset/problem/1553/A
https://codeforces.com/problemset/problem/1542/A
Week 2
27 February, 2026
https://codeforces.com/problemset/problem/1535/B
Its not required to make the pair distinct
Array can be sort by even/odd with sort function
https://codeforces.com/problemset/problem/1537/B
yo-yo can be thrown in the same place where Antos stand at
https://codeforces.com/problemset/problem/1611/A
it ask how many prefix reversals needed
it doesn't ask the index from where it should be reversed so that the number is even
https://leetcode.com/problems/sort-array-by-parity/description/
https://leetcode.com/problems/odd-even-linked-list/
https://leetcode.com/problems/find-numbers-with-even-number-of-digits/
https://leetcode.com/problems/gcd-of-odd-and-even-sums/
Sum of first nth even number = n(n+1)
Sum of first nth odd number = n*n
28 February, 2026
https://codeforces.com/problemset/problem/1475/A
here dividing result_even by 2 doesn't produce the odd one, divide the result even by 2^k/n & (n - 1)
https://codeforces.com/contest/1462/problem/C
https://codeforces.com/problemset/problem/1374/B
Multiply by 2 means add one 2 from its prime factorizatoin.
Divide by 6 means remove one 2 and one 3 from its prime factorization.
Our end goal is to remove the factorization
We must perform all possible operation of removing/division, if we have shortage of 2, it can be filled my multiplying 2
https://codeforces.com/problemset/problem/1475/B
n = 2020x + 2021y
n = 2020x + 2020y + y
n = 2020 (x + y) + y
n = 2020q + r - apply divisibility rule(r <= q)
https://codeforces.com/contest/2200/problem/A
it ask how many time win, i thought who win
https://codeforces.com/contest/2200/problem/B
for non-decresing order, the condition should be <= but i only use <
is_sorted is used to check wheather a iterator sorted or not
https://codeforces.com/contest/2200/problem/C
approach was right, jsut couldn't able to impment it
why the outer loop need to iterate n/2 times?
each operation remove 2 pairs, so maximum possible deletion is(n/2) pairs
i < size - 1 can be replaced with i + 1 < size
01 March, 2026
https://codeforces.com/contest/2203/problem/B
Intitution was correct, just couldn't able to implement it
sort the digits, while extracting the digit consider all the same except the first one, reduce it by 1
https://codeforces.com/problemset/problem/318/A
all are correct, just put the wrong condition
02 March, 2026
03 March, 2026
https://www.geeksforgeeks.org/problems/find-pairs-with-given-sum-in-doubly-linked-list/1
05 March, 2026
https://leetcode.com/problems/add-two-numbers/
https://leetcode.com/problems/roman-to-integer/
https://www.geeksforgeeks.org/problems/add-1-to-a-number-represented-as-linked-list/1
06 March, 2026
https://leetcode.com/problems/maximum-twin-sum-of-a-linked-list/description/
https://www.geeksforgeeks.org/problems/delete-all-occurrences-of-a-given-key-in-a-doubly-linked-list/1
https://leetcode.com/problems/remove-duplicates-from-sorted-list
Week 3
07 March, 2026
08 March, 2026
09 March, 2026
https://leetcode.com/problems/longest-harmonious-subsequence/
harmonious subsequence doesn't preserve order/sequence
https://leetcode.com/problems/apply-operations-to-an-array/description/
Check Note that the operations are applied sequentially, not all at once.
Upcoming
codeforces.com/contest/2203/problem/B
Intitution was right, just couldn't impelement it
Check the constraint(input the integer as string)
Sort it, reduce the large digits from sum, special consideration for first character in string
codeforces.com/contest/2202/problem/A
Using both (+2,+1) and (+4,-1) is equivalent to using two (+3,0) moves.
codeforces.com/problemset/problem/1363/A
codeforces.com/problemset/problem/1092/B
codeforces.com/problemset/problem/1335/A
codeforces.com/problemset/problem/1335/C
codeforces.com/problemset/problem/1421/A
codeforces.com/problemset/problem/110/A
codeforces.com/problemset/problem/122/A
codeforces.com/problemset/problem/1176/A
codeforces.com/problemset/problem/1095/A
codeforces.com/problemset/problem/1348/A
leetcode.com/problems/number-of-even-and-odd-bits/
geeksforgeeks.org/problems/string-comparison5858/1
two pointer: geeksforgeeks.org/problems/palindrome-string0817/1
two pointer: geeksforgeeks.org/problems/string-concatenation-1614157859/1
https://www.geeksforgeeks.org/problems/remove-spaces0128/1
https://www.geeksforgeeks.org/problems/maximum-occuring-character-1587115620/1
https://leetcode.com/problems/finding-pairs-with-a-certain-sum/description/