0% found this document useful (0 votes)
7 views3 pages

Recursion Study Plan

The document outlines a structured schedule for solving various coding problems over a 15-week period, categorized by difficulty level and platform. Each week includes a list of problems focusing on different concepts such as recursion, backtracking, and dynamic programming. The problems are sourced from platforms like LeetCode and GeeksforGeeks, providing a comprehensive learning path for improving coding skills.

Uploaded by

nitesh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as XLSX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views3 pages

Recursion Study Plan

The document outlines a structured schedule for solving various coding problems over a 15-week period, categorized by difficulty level and platform. Each week includes a list of problems focusing on different concepts such as recursion, backtracking, and dynamic programming. The problems are sourced from platforms like LeetCode and GeeksforGeeks, providing a comprehensive learning path for improving coding skills.

Uploaded by

nitesh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as XLSX, PDF, TXT or read online on Scribd
You are on page 1/ 3

Week Day Date Level Problem Platform Concept

1 1 2025-04-0 Easy Factorial o GeeksforGBasic recursion


1 2 2025-04-1 Easy Fibonacci LeetCode Basic recursion
1 3 2025-04-1 Easy Sum of digiCoding NinBasic recursion
1 4 2025-04-1 Easy Power of aCoding NinBasic recursion
1 5 2025-04-1 Easy Print numbCoding NinDecreasing recursion
1 6 2025-04-1 Easy Print numbCoding NinIncreasing recursion
1 7 2025-04-1 Easy Check Pali Coding NinString recursion
2 1 2025-04-1 Easy Reverse a sLeetCode String recursion
2 2 2025-04-1 Easy Check if ar Coding NinArray recursion
2 3 2025-04-1 Easy Linear SearCoding NinBasic recursion
2 4 2025-04-1 Easy Binary SearGeeksforGDivide and conquer
2 5 2025-04-2 Easy Find first Coding NinRecursive search
2 6 2025-04-2 Easy Count zeroCoding NinDigit recursion
2 7 2025-04-2 Easy Replace pi Coding NinString replacement
3 1 2025-04-2 Easy Remove dup Coding NinString manipulation
3 2 2025-04-2 Easy Tower of HGeeksforGClassic recursion
3 3 2025-04-2 Easy Print all s Coding NinBacktracking base
3 4 2025-04-2 Easy Subset su Coding NinRecursive subset
3 5 2025-04-2 Easy Check if suCoding NinBacktracking
3 6 2025-04-2 Easy Generate alCoding NinBinary combinations
3 7 2025-04-2 Easy Count waysLeetCode Recursive DP
4 1 2025-04-3 Easy Minimum st Coding NinTop-down recursion
4 2 2025-05-0 Easy Friends pa GeeksforGClassic recursion
4 3 2025-05-0 Easy Count GooLeetCode Recursive pattern
4 4 2025-05-0 Easy Number ofLeetCode Basic recursion
4 5 2025-05-0 Easy Sum of N nCoding NinRecursive math
4 6 2025-05-0 Easy GCD using GeeksforGEuclid's algorithm
4 7 2025-05-0 Easy LCM using Coding NinMath recursion
5 1 2025-05-0 Easy Sum of arr Coding NinRecursive summation
5 2 2025-05-0 Easy Product of Coding NinRecursive product
5 3 2025-05-0 Easy String to I Coding NinRecursive parse
5 4 2025-05-1 Easy Check balaCoding NinRecursive check
5 5 2025-05-1 Easy Convert deCoding NinMath recursion
5 6 2025-05-1 Easy Count vowel Coding NinString recursion
5 7 2025-05-1 Easy Merge sortCoding NinDivide and conquer
6 1 2025-05-1 Easy Quick sort Coding NinRecursive sorting
6 2 2025-05-1 Easy PalindromeLeetCode Recursive LL
6 3 2025-05-1 Easy Same TreeLeetCode Tree recursion
6 4 2025-05-1 Easy Symmetric LeetCode Tree recursion
6 5 2025-05-1 Easy Maximum De LeetCode Tree recursion
6 6 2025-05-1 Medium Subsets LeetCode Backtracking with recursion
6 7 2025-05-2 Medium PermutatioLeetCode Backtracking + recursion
7 1 2025-05-2 Medium Combinati LeetCode Backtracking
7 2 2025-05-2 Medium Letter ComLeetCode DFS recursion
7 3 2025-05-2 Medium Generate PLeetCode Backtracking
7 4 2025-05-2 Medium Unique PatLeetCode DP recursion
7 5 2025-05-2 Medium Decode WaLeetCode DP + recursion
7 6 2025-05-2 Medium Climbing StLeetCode Fibonacci variant
7 7 2025-05-2 Medium House RobLeetCode Memoized recursion
8 1 2025-05-2 Medium Subsets II LeetCode Backtracking
8 2 2025-05-2 Medium Combinati LeetCode Recursive generation
8 3 2025-05-3 Medium Path Sum ILeetCode Tree DFS
8 4 2025-05-3 Medium All Paths f LeetCode DFS graph recursion
8 5 2025-06-0 Medium Flatten BinLeetCode Tree recursion
8 6 2025-06-0 Medium Construct LeetCode Recursive build
8 7 2025-06-0 Medium Binary TreeLeetCode Recursive level wise
9 1 2025-06-0 Medium Find Kth S LeetCode Math recursion
9 2 2025-06-0 Medium Find All AnLeetCode Sliding window + recursion
9 3 2025-06-0 Medium Power of TLeetCode Recursive division
9 4 2025-06-0 Medium Count Good LeetCode DFS recursion
9 5 2025-06-0 Medium Binary Tr LeetCode Postorder + recursion
9 6 2025-06-0 Medium Maximum De LeetCode Recursive children traversal
9 7 2025-06-1 Medium Count UnivLeetCode Tree logic
10 1 2025-06-1 Medium Sum Root tLeetCode Path building recursion
10 2 2025-06-1 Medium PalindromeLeetCode Backtracking recursion
10 3 2025-06-1 Medium Find Dupli LeetCode Subtree serialization
10 4 2025-06-1 Medium Construct LeetCode Divide and recurse
10 5 2025-06-1 Medium Merge K Sor LeetCode Divide and merge recursion
10 6 2025-06-1 Medium Flatten NesLeetCode Recursive iterator
10 7 2025-06-1 Medium Word BreaLeetCode Memoization
11 1 2025-06-1 Medium Scramble SLeetCode Recursive string comparison
11 2 2025-06-1 Medium Unique BinLeetCode Catalan number logic
11 3 2025-06-2 Medium Partition t LeetCode Recursive + bitmask
11 4 2025-06-2 Medium Construct LeetCode Recursive build
11 5 2025-06-2 Medium Target SumLeetCode Recursion with memoization
11 6 2025-06-2 Medium Letter Cas LeetCode Recursive branching
11 7 2025-06-2 Medium Number ofLeetCode DFS recursion
12 1 2025-06-2 Medium Minimum PLeetCode Recursion with grid
12 2 2025-06-2 Medium Unique Path LeetCode Obstacle handling in recursion
12 3 2025-06-2 Hard Regular Ex LeetCode Recursive DP
12 4 2025-06-2 Hard Sudoku SolLeetCode Backtracking recursion
12 5 2025-06-2 Hard N-Queens LeetCode Backtracking
12 6 2025-06-3 Hard Word SearcLeetCode Trie + DFS recursion
12 7 2025-07-0 Hard The Skylin LeetCode Divide and conquer
13 1 2025-07-0 Hard InterleavinLeetCode 3D recursion
13 2 2025-07-0 Hard Distinct S LeetCode Recursive subsequence count
13 3 2025-07-0 Hard PalindromeLeetCode Recursion + trie
13 4 2025-07-0 Hard Minimum In LeetCode DP recursion
13 5 2025-07-0 Hard Scramble SLeetCode Memoization + recursion
13 6 2025-07-0 Hard Restore IP LeetCode Backtracking
13 7 2025-07-0 Hard Longest IncLeetCode Memoized DFS
14 1 2025-07-0 Hard Number ofLeetCode
D Shape based recursion
14 2 2025-07-1 Hard Maximal ReLeetCode Recursion with histogram
14 3 2025-07-1 Hard Count Diff LeetCode DP + recursion
14 4 2025-07-1 Hard Paint HouseLeetCode Memoized recursion
14 5 2025-07-1 Hard Burst BalloLeetCode Divide and conquer
14 6 2025-07-1 Hard Minimum Co LeetCode Recursive cost calculation
14 7 2025-07-1 Hard ExpressionLeetCode Backtracking recursion
15 1 2025-07-1 Hard Remove BoLeetCode DP recursion

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy