0% found this document useful (0 votes)
5 views

TimeTable

The document outlines a comprehensive study plan for mastering C++ and data structures, organized by days and topics, including C++ STL, algorithms, trees, graphs, and dynamic programming. It provides a list of problems and resources for practice, along with links to various coding challenges on platforms such as HackerRank and LeetCode. The structure is designed to guide learners through a systematic approach to problem-solving and implementation in programming.

Uploaded by

Pradeep Jha
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views

TimeTable

The document outlines a comprehensive study plan for mastering C++ and data structures, organized by days and topics, including C++ STL, algorithms, trees, graphs, and dynamic programming. It provides a list of problems and resources for practice, along with links to various coding challenges on platforms such as HackerRank and LeetCode. The structure is designed to guide learners through a systematic approach to problem-solving and implementation in programming.

Uploaded by

Pradeep Jha
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 21

Area No

1
2
C++/STL/Vector 3
C++/STL/Deque 4
C++/STL/Queue 5
C++/STL/Stack 6
C++/STL/List 7
C++/STL/Hash Map 8
C++ STL

C++/STL/Priority Queue 9
C++/STL/Array 10
C++/STL/pairs 11
C++/STL/Set 12
Algorithm 13 Day 1

Container with most water 1


two sum 2
3 sum 3
remove duplicates 4
move zeros 5
segregate 0s 6
Two pointer

long pressed name 7


reverse vowels of a string 8
find pair with given diff 9
String reverse 10
palindrome check 11
Intersection of sets 12
next greater element 13
Quick Sort partition 14 Day 2 , 3

1 Day 3
2
3
4
5
6
7
8
9
10
11 Day 4
12
13
14
15
ion
16
17
Tree Revision 18 Day 5
19
20
21
22
23
24
25
26
Graph Intro

Input/Output in Graph 1 Day 6


BFS 2
DFS 3
Fog in the maze 4
5
DFS Edges 6
Down to zero 7

Algorithm Paradigm 1 Day 7


Time and space complexity 2
Algo Paradigm

Steps in problem solving 3


Design approaches 4

Mathematical functions
5
6
7
8

Sorting 1 Day 8
2
Graph Revisited Sorting

3
4

Modified binary search 5

Journey to the moon 1 Day 9


Sparse Array 2
MST 3
Shortest Path 4
Transitive Closure 5
APSP 6
Connected Components 7
Graph Re
Snake and Ladder 8 Day10
Word Boggle 9
castle on the grid 10

Binary & Balanced Trees 1


2
3
4
5
6
Segment Tree 7 Day 11
Tree Revisited

8
9
Traversals 10
Traversals 11
Traversals 12
Traversals 13
Traversals 14
Segment Tree 15
Segment Tree 16
Assignment Questions
warmup 1 Day1
2
3
4
5
warmup

6
7
8
9
10
Arrays 1
2
3
Arrays

4
5
6
7
1 Day 12
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
BIT Manipulation

18
19
Count Set Bits In First N Natural
20Numbers
Day 13
Gray Code 21
Minimum Number Of Software 22 Developers
One Repeating And One Missing 23
Reduce N To 1 24
Pepcoder And Bits 25
Swap odd and even bits 26
Sum of bit difference among all27pairs
Utf - 8 Encoding 28
1 Day 14- 15 -16
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
Implementation

38
39
40
41
42
43
44
45
46
47
Sorting 1 Day 17
2
3
4
5
6
7
Sorting

8
9
10
11
String 1 Day 18
2
3
4
5
6
7
8
9
10
11
12
13
14
15
String

16
String
17
18
Greedy 1 Day 19-20
2
3
4
5
6
7
Greedy

8
9
10
11
Number Theory 1 Day21
2
3
Geometr Fundament Number

4
Theory

5
6
7
8
Math Fundamental 1 Day 22
2
3
4
5
Math

6
7
al

8
Geometry 1 Day 23
2
3
4
5
y

6
Combinatories 1
torie
Com
bina

2
s

Linked List 1 Day 24


2
3
4
5
Linked List

6
7
8
9
10
Linked
11
Stack 1 Day 25
Stac 2
k
Heap Heap 1 Day 25
2
3
4
Trie Insertion 1 Day 26
Trie Search 2
Trie Deletion 3
Fiding Prefixes 4
Count no of words having given prefixes
5
Trie

Auto Complete feature using Trie 6


Count unique Words in a text file 7
Finding catalon number Day 27-28
Minimum Jump to reach end
No of BST
nth Number in Fibonacci series
DP Ladder problem
Link
https://www.hackerrank.com/challenges/vector-erase/problem?isFullScreen=true
https://www.hackerrank.com/challenges/vector-sort/problem
https://practice.geeksforgeeks.org/problems/c-stl-set-1-vector/1

https://www.hackerrank.com/challenges/queue-using-two-stacks/problem

https://leetcode.com/problems/3sum/
https://practice.geeksforgeeks.org/problems/triplet-sum-in-array-1587115621/1
https://www.hackerrank.com/challenges/circular-array-rotation/problem
SJF CPU Scheduling
https://www.hackerrank.com/challenges/bus-station/problem
Functions: Sort, pair wise sort, rotate, reverse, min, max, swap, binary search

https://leetcode.com/problems/container-with-most-water/
https://leetcode.com/problems/two-sum/
https://leetcode.com/problems/3sum/
https://leetcode.com/problems/remove-duplicates-from-sorted-array-ii/
https://leetcode.com/problems/move-zeroes/
https://practice.geeksforgeeks.org/problems/segregate-0s-and-1s5106/1
https://leetcode.com/problems/long-pressed-name/
https://leetcode.com/problems/reverse-vowels-of-a-string/
https://practice.geeksforgeeks.org/problems/find-pair-given-difference1559/1
String reverse
palindrome check
Intersection of sets
https://leetcode.com/problems/next-greater-element-iii/
Quick Sort partition

Program for Pre-Order, In-Order, Post-Order Traversal


Program to find Node Count in the Binary Tree
Program to find leaf node Count in the Binary Tree
Program to find count of nodes having 1 child
Program to find count of nodes having 2 children
Program to Find if the given Binary Tree is complete
Program to find if the given Binary Tree is strictly
Program for Level Order Traversal
Program to Find the height of the Binary Tree
Write a Program for BST insertion (using Recursion)
https://www.hackerrank.com/challenges/tree-preorder-traversal?isFullScreen=true
https://www.hackerrank.com/challenges/tree-postorder-traversal?isFullScreen=true
https://www.hackerrank.com/challenges/tree-inorder-traversal?isFullScreen=true
https://www.hackerrank.com/challenges/tree-height-of-a-binary-tree?isFullScreen=true
https://www.hackerrank.com/challenges/binary-search-tree-lowest-common-ancestor?isFullScreen=true
https://www.hackerrank.com/challenges/array-pairs?isFullScreen=true
https://www.hackerrank.com/challenges/is-binary-search-tree/problem
https://www.hackerrank.com/challenges/swap-nodes-algo
https://leetcode.com/problems/same-tree/
https://leetcode.com/problems/kth-smallest-element-in-a-bst/
https://practice.geeksforgeeks.org/problems/largest-bst/1
https://practice.geeksforgeeks.org/problems/min-distance-between-two-given-nodes-of-a-binary-tree/1
https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-tree/
https://practice.geeksforgeeks.org/problems/maximum-sum-leaf-to-root-path/1/
https://leetcode.com/problems/subtree-of-another-tree/
https://leetcode.com/problems/merge-two-binary-trees/

https://www.hackerrank.com/challenges/frog-in-maze/problem
https://www.hackerrank.com/challenges/bfsshortreach/problem
https://www.hackerrank.com/challenges/dfs-edges/problem
https://www.hackerrank.com/challenges/down-to-zero-ii/problem

https://www.hackerrank.com/challenges/apple-and-orange/problem?isFullScreen=true
https://www.hackerrank.com/challenges/birthday-cake-candles/problem?isFullScreen=true

https://www.hackerrank.com/challenges/bus-station/problem?isFullScreen=true
https://www.hackerrank.com/challenges/big-sorting/problem?isFullScreen=true

Bit Manipulation Basics, Linear Recurrences and Matrix Exponentiation, Pigeonhole Principle, Fibonacci series Prime Numbers and Factoriz
https://www.hackerrank.com/challenges/jim-and-the-jokes/problem?isFullScreen=true
https://www.hackerrank.com/challenges/maximum-draws/problem
https://www.hackerrank.com/challenges/ctci-fibonacci-numbers/problem
https://www.hackerrank.com/challenges/crush/problem?isFullScreen=true

https://www.hackerrank.com/challenges/insertion-sort/problem
https://www.hackerrank.com/challenges/quicksort3/problem
https://www.hackerrank.com/challenges/ctci-merge-sort/problem
https://www.hackerrank.com/challenges/countingsort2/problem

https://www.hackerrank.com/challenges/phone-book/problem

https://www.hackerrank.com/challenges/journey-to-the-moon/problem?isFullScreen=true
https://www.hackerrank.com/challenges/sparse-arrays/problem
https://www.hackerrank.com/challenges/primsmstsub/problem
https://www.hackerrank.com/challenges/dijkstrashortreach/problem
Transitive Closure
All pairs shortest path
Finding Connected components
https://www.hackerrank.com/challenges/the-quickest-way-up/problem
https://www.geeksforgeeks.org/boggle-find-possible-words-board-characters
https://www.hackerrank.com/challenges/castle-on-the-grid/problem

Rotations in AVL Tree


Balance factor
AVL Insertion
https://www.hackerrank.com/challenges/balanced-forest/problem?isFullScreen=true
https://www.hackerrank.com/challenges/median/problem?isFullScreen=true
https://www.hackerrank.com/challenges/jenny-subtrees/problem?isFullScreen=true
https://www.hackerrank.com/challenges/range-minimum-query/problem
https://www.hackerrank.com/challenges/jesse-and-cookies/problem
https://www.hackerrank.com/challenges/java-priority-queue/problem
Program for Left View Traversal
Program for Right View Traversal
Program for Top View Traversal
Program for Bottom View Traversal
Program for Vertical View Traversal
Range Sum
Range Maxmimum/Minimum
signment Questions
https://www.hackerrank.com/challenges/solve-me-first?isFullScreen=true
https://www.hackerrank.com/challenges/simple-array-sum?isFullScreen=true
https://www.hackerrank.com/challenges/compare-the-triplets?isFullScreen=true
https://www.hackerrank.com/challenges/a-very-big-sum?isFullScreen=true
https://www.hackerrank.com/challenges/diagonal-difference?isFullScreen=true
https://www.hackerrank.com/challenges/plus-minus?isFullScreen=true
https://www.hackerrank.com/challenges/staircase?isFullScreen=true
https://www.hackerrank.com/challenges/mini-max-sum?isFullScreen=true
https://www.hackerrank.com/challenges/birthday-cake-candles?isFullScreen=true
https://www.hackerrank.com/challenges/time-conversion?isFullScreen=true
https://www.hackerrank.com/challenges/arrays-ds?isFullScreen=true
https://www.hackerrank.com/challenges/2d-array?isFullScreen=true
https://www.hackerrank.com/challenges/dynamic-array?isFullScreen=true
https://www.hackerrank.com/challenges/array-left-rotation?isFullScreen=true
https://www.hackerrank.com/challenges/sparse-arrays?isFullScreen=true
https://www.hackerrank.com/challenges/find-the-merge-point-of-two-joined-linked-lists?isFullScreen=true
https://www.hackerrank.com/challenges/equality-in-a-array?isFullScreen=true
https://www.hackerrank.com/challenges/lonely-integer?isFullScreen=true
https://www.hackerrank.com/challenges/maximizing-xor?isFullScreen=true
https://www.hackerrank.com/challenges/sum-vs-xor?isFullScreen=true
https://www.hackerrank.com/challenges/flipping-bits?isFullScreen=true
https://leetcode.com/problems/reverse-bits/
https://practice.geeksforgeeks.org/problems/set-bits0143/1/#
https://leetcode.com/problems/decode-xored-array/
https://practice.geeksforgeeks.org/problems/rotate-bits4524/1/#
https://leetcode.com/problems/power-of-two/
https://leetcode.com/problems/divide-two-integers/
https://leetcode.com/problems/single-number-ii/
https://leetcode.com/problems/single-number-iii/
https://leetcode.com/problems/repeated-dna-sequences/
https://leetcode.com/problems/beautiful-arrangement/
https://leetcode.com/problems/score-after-flipping-matrix/
https://www.geeksforgeeks.org/copy-set-bits-in-a-range/
https://leetcode.com/problems/chalkboard-xor-game/
https://leetcode.com/problems/transform-to-chessboard/
https://leetcode.com/problems/number-of-squareful-arrays/
https://www.pepcoding.com/resources/data-structures-and-algorithms-in-java-levelup/bit-manipulation/count-setbits
https://www.pepcoding.com/resources/data-structures-and-algorithms-in-java-levelup/bit-manipulation/gray-code/ojq
https://www.pepcoding.com/resources/data-structures-and-algorithms-in-java-levelup/bit-manipulation/minimum-num
https://www.pepcoding.com/resources/data-structures-and-algorithms-in-java-levelup/bit-manipulation/one-repeating
https://www.pepcoding.com/resources/data-structures-and-algorithms-in-java-levelup/bit-manipulation/reduce-n-to-1
https://www.pepcoding.com/resources/data-structures-and-algorithms-in-java-levelup/bit-manipulation/pepcoder-and
https://www.pepcoding.com/resources/data-structures-and-algorithms-in-java-levelup/bit-manipulation/swap-all-odd
https://www.pepcoding.com/resources/data-structures-and-algorithms-in-java-levelup/bit-manipulation/sum-of-bit-dif
https://www.pepcoding.com/resources/data-structures-and-algorithms-in-java-levelup/bit-manipulation/utf-8-encodin
https://www.hackerrank.com/challenges/the-hurdle-race?isFullScreen=true
https://www.hackerrank.com/challenges/grading?isFullScreen=true
https://www.hackerrank.com/challenges/apple-and-orange?isFullScreen=true
https://www.hackerrank.com/challenges/kangaroo?isFullScreen=true
https://www.hackerrank.com/challenges/between-two-sets?isFullScreen=true
https://www.hackerrank.com/challenges/breaking-best-and-worst-records?isFullScreen=true
https://www.hackerrank.com/challenges/the-birthday-bar?isFullScreen=true
https://www.hackerrank.com/challenges/divisible-sum-pairs?isFullScreen=true
https://www.hackerrank.com/challenges/migratory-birds?isFullScreen=true
https://www.hackerrank.com/challenges/day-of-the-programmer?isFullScreen=true
https://www.hackerrank.com/challenges/bon-appetit?isFullScreen=true
https://www.hackerrank.com/challenges/sock-merchant?isFullScreen=true
https://www.hackerrank.com/challenges/drawing-book?isFullScreen=true
https://www.hackerrank.com/challenges/counting-valleys?isFullScreen=true
https://www.hackerrank.com/challenges/electronics-shop?isFullScreen=true
https://www.hackerrank.com/challenges/cats-and-a-mouse?isFullScreen=true
https://www.hackerrank.com/challenges/picking-numbers?isFullScreen=true
https://www.hackerrank.com/challenges/designer-pdf-viewer?isFullScreen=true
https://www.hackerrank.com/challenges/utopian-tree?isFullScreen=true
https://www.hackerrank.com/challenges/angry-professor?isFullScreen=true
https://www.hackerrank.com/challenges/beautiful-days-at-the-movies?isFullScreen=true
https://www.hackerrank.com/challenges/strange-advertising?isFullScreen=true
https://www.hackerrank.com/challenges/save-the-prisoner?isFullScreen=true
https://www.hackerrank.com/challenges/circular-array-rotation?isFullScreen=true
https://www.hackerrank.com/challenges/permutation-equation?isFullScreen=true
https://www.hackerrank.com/challenges/jumping-on-the-clouds-revisited?isFullScreen=true
https://www.hackerrank.com/challenges/find-digits?isFullScreen=true
https://www.hackerrank.com/challenges/append-and-delete?isFullScreen=true
https://www.hackerrank.com/challenges/sherlock-and-squares?isFullScreen=true
https://www.hackerrank.com/challenges/library-fine?isFullScreen=true
https://www.hackerrank.com/challenges/cut-the-sticks?isFullScreen=true
https://www.hackerrank.com/challenges/repeated-string?isFullScreen=true
https://www.hackerrank.com/challenges/jumping-on-the-clouds?isFullScreen=true
https://www.hackerrank.com/challenges/acm-icpc-team?isFullScreen=true
https://www.hackerrank.com/challenges/taum-and-bday?isFullScreen=true
https://www.hackerrank.com/challenges/kaprekar-numbers?isFullScreen=true
https://www.hackerrank.com/challenges/beautiful-triplets?isFullScreen=true
https://www.hackerrank.com/challenges/minimum-distances?isFullScreen=true
https://www.hackerrank.com/challenges/halloween-sale?isFullScreen=true
https://www.hackerrank.com/challenges/chocolate-feast?isFullScreen=true
https://www.hackerrank.com/challenges/service-lane?isFullScreen=true
https://www.hackerrank.com/challenges/lisa-workbook?isFullScreen=true
https://www.hackerrank.com/challenges/fair-rations?isFullScreen=true
https://www.hackerrank.com/challenges/cavity-map?isFullScreen=true
https://www.hackerrank.com/challenges/manasa-and-stones?isFullScreen=true
https://www.hackerrank.com/challenges/happy-ladybugs?isFullScreen=true
https://www.hackerrank.com/challenges/strange-code?isFullScreen=true
https://www.hackerrank.com/challenges/big-sorting?isFullScreen=true
https://www.hackerrank.com/challenges/insertionsort1?isFullScreen=true
https://www.hackerrank.com/challenges/insertionsort2?isFullScreen=true
https://www.hackerrank.com/challenges/quicksort1?isFullScreen=true
https://www.hackerrank.com/challenges/countingsort1?isFullScreen=true
https://www.hackerrank.com/challenges/countingsort2?isFullScreen=true
https://www.hackerrank.com/challenges/tutorial-intro?isFullScreen=true
https://www.hackerrank.com/challenges/correctness-invariant?isFullScreen=true
https://www.hackerrank.com/challenges/runningtime?isFullScreen=true
https://www.hackerrank.com/challenges/closest-numbers?isFullScreen=true
https://www.hackerrank.com/challenges/find-the-median?isFullScreen=true
https://www.hackerrank.com/challenges/string-construction?isFullScreen=true
https://www.hackerrank.com/challenges/two-strings?isFullScreen=true
https://www.hackerrank.com/challenges/game-of-thrones?isFullScreen=true
https://www.hackerrank.com/challenges/making-anagrams?isFullScreen=true
https://www.hackerrank.com/challenges/anagram?isFullScreen=true
https://www.hackerrank.com/challenges/palindrome-index?isFullScreen=true
https://www.hackerrank.com/challenges/the-love-letter-mystery?isFullScreen=true
https://www.hackerrank.com/challenges/beautiful-binary-string?isFullScreen=true
https://www.hackerrank.com/challenges/camelcase?isFullScreen=true
https://www.hackerrank.com/challenges/strong-password?isFullScreen=true
https://www.hackerrank.com/challenges/caesar-cipher-1?isFullScreen=true
https://www.hackerrank.com/challenges/mars-exploration?isFullScreen=true
https://www.hackerrank.com/challenges/hackerrank-in-a-string?isFullScreen=true
https://www.hackerrank.com/challenges/pangrams?isFullScreen=true
https://www.hackerrank.com/challenges/separate-the-numbers?isFullScreen=true
https://www.hackerrank.com/challenges/funny-string?isFullScreen=true
https://www.hackerrank.com/challenges/gem-stones?isFullScreen=true
https://www.hackerrank.com/challenges/alternating-characters?isFullScreen=true
https://www.hackerrank.com/challenges/two-arrays?isFullScreen=true
https://www.hackerrank.com/challenges/jim-and-the-orders?isFullScreen=true
https://www.hackerrank.com/challenges/mark-and-toys?isFullScreen=true
https://www.hackerrank.com/challenges/largest-permutation?isFullScreen=true
https://www.hackerrank.com/challenges/priyanka-and-toys?isFullScreen=true
https://www.hackerrank.com/challenges/sherlock-and-the-beast?isFullScreen=true
https://www.hackerrank.com/challenges/maximum-perimeter-triangle?isFullScreen=true
https://www.hackerrank.com/challenges/grid-challenge?isFullScreen=true
https://www.hackerrank.com/challenges/marcs-cakewalk?isFullScreen=true
https://www.hackerrank.com/challenges/minimum-absolute-difference-in-an-array?isFullScreen=true
https://www.hackerrank.com/challenges/luck-balance?isFullScreen=true
https://www.hackerrank.com/challenges/sherlock-and-gcd?isFullScreen=true
https://www.hackerrank.com/challenges/constructing-a-number?isFullScreen=true
https://www.hackerrank.com/challenges/primitive-problem?isFullScreen=true
https://www.hackerrank.com/challenges/identify-smith-numbers?isFullScreen=true
https://www.hackerrank.com/challenges/eulers-criterion?isFullScreen=true
https://www.hackerrank.com/challenges/fibonacci-finding-easy?isFullScreen=true
https://www.hackerrank.com/challenges/cheese-and-random-toppings?isFullScreen=true
https://www.hackerrank.com/challenges/john-and-gcd-list?isFullScreen=true
https://www.hackerrank.com/challenges/game-with-cells?isFullScreen=true
https://www.hackerrank.com/challenges/connecting-towns?isFullScreen=true
https://www.hackerrank.com/challenges/p1-paper-cutting?isFullScreen=true
https://www.hackerrank.com/challenges/sherlock-and-moving-tiles?isFullScreen=true
https://www.hackerrank.com/challenges/best-divisor?isFullScreen=true
https://www.hackerrank.com/challenges/restaurant?isFullScreen=true
https://www.hackerrank.com/challenges/halloween-party?isFullScreen=true
https://www.hackerrank.com/challenges/possible-path?isFullScreen=true
https://www.hackerrank.com/challenges/points-on-a-line?isFullScreen=true
https://www.hackerrank.com/challenges/rectangular-game?isFullScreen=true
https://www.hackerrank.com/challenges/sherlock-and-counting?isFullScreen=true
https://www.hackerrank.com/challenges/sherlock-and-planes?isFullScreen=true
https://www.hackerrank.com/challenges/xrange-and-pizza?isFullScreen=true
https://www.hackerrank.com/challenges/points-on-rectangle?isFullScreen=true
https://www.hackerrank.com/challenges/a-chocolate-fiesta?isFullScreen=true
https://www.hackerrank.com/challenges/picking-cards?isFullScreen=true
https://www.hackerrank.com/challenges/reverse-a-linked-list?isFullScreen=true
https://www.hackerrank.com/challenges/merge-two-sorted-linked-lists?isFullScreen=true
https://leetcode.com/problems/middle-of-the-linked-list/
https://leetcode.com/problems/remove-zero-sum-consecutive-nodes-from-linked-list/
https://www.hackerrank.com/challenges/and-xor-or?isFullScreen=true
https://www.hackerrank.com/challenges/detect-whether-a-linked-list-contains-a-cycle?isFullScreen=true
https://practice.geeksforgeeks.org/problems/remove-loop-in-Linked-list/1
https://leetcode.com/problems/merge-in-between-linked-lists/
https://leetcode.com/problems/flatten-a-multilevel-doubly-linked-list/
https://leetcode.com/problems/next-greater-node-in-linked-list/
https://leetcode.com/problems/rotate-list/
https://www.hackerrank.com/challenges/queue-using-two-stacks?isFullScreen=true
https://www.hackerrank.com/challenges/truck-tour?isFullScreen=true
https://www.hackerrank.com/challenges/qheap1?isFullScreen=true
https://www.hackerrank.com/challenges/jesse-and-cookies?isFullScreen=true
https://www.hackerrank.com/challenges/find-the-running-median?isFullScreen=true
https://www.hackerrank.com/challenges/minimum-average-waiting-time?isFullScreen=true

Given a text file. Make a trie with the words in the File. Count unique words

https://practice.geeksforgeeks.org/problems/minimum-number-of-jumps-1587115620/1/?page=1&category[]=Arrays&sortB
https://leetcode.com/problems/unique-binary-search-trees/
https://leetcode.com/problems/fibonacci-number/
https://leetcode.com/problems/climbing-stairs/
ci series Prime Numbers and Factorization, Euclidian's Algorithm, Number Theory, Combinatorics
p/bit-manipulation/count-setbits-in-first-n-natural-numbers-official/ojquestion

p/bit-manipulation/minimum-number-of-software-developers-official/ojquestion

p/bit-manipulation/sum-of-bit-differences-of-all-pairs-official/ojquestion

You might also like