
Aditya Gupta
@offx_aadi
Followers
55
Following
217
Media
127
Statuses
149
I am currently immersing myself in the realm of problem-solving and deeply passionate about competitive programming.
Jaipur, Rajasthan
Joined May 2024
π #Day125 | #gfg160 with @geeksforgeeks π.π° Problem Solved: Stock Buy and Sell β Max K Transactions Allowed.π¦ Concept: Used dynamic programming with a 2D dp[k+1][n] table. #gfg160 #geekstreak2025 #DSA #CodingChallenge #160DaysOfCode #LetsConnect #LearnInPublic
0
0
3
π #Day124 | #gfg160 with @geeksforgeeks π.π° Problem Solved: Partition Equal Subset Sum.π¦ Concept: This problem reduces to checking if there exists a subset with sum equal to totalSum/2. #gfg160 #geekstreak2025 #DSA #CodingChallenge #160DaysOfCode #LetsConnect #LearnInPublic
0
0
2
π #Day123 | #gfg160 with @geeksforgeeks π.π° Problem Solved: Subset Sum Problem.π¦ Concept: A classic dp problem where we use a 2D dp table to check if a subset with the given sum exists. #gfg160 #geekstreak2025 #DSA #CodingChallenge #160DaysOfCode #LetsConnect #LearnInPublic
0
0
2
π #Day122 | #gfg160 with @geeksforgeeks π.π° Problem Solved: Minimum Jumps.π¦ Concept: This greedy+DP problem finds the minimum number of jumps needed to reach the end of the array. #gfg160 #geekstreak2025 #DSA #CodingChallenge #160DaysOfCode #LetsConnect #LearnInPublic
0
0
3
π #Day121 | #gfg160 with @geeksforgeeks π.π° Problem Solved: Coin Change β Minimum Coins.π¦ Concept: This dp problem uses a dp array where each i store the min no of coins req to amount i. #gfg160 #geekstreak2025 #DSA #CodingChallenge #160DaysOfCode #LetsConnect #LearnInPublic
0
0
6
π #Day120 | #gfg160 with @geeksforgeeks π.π° Problem Solved: Coin Change β Minimum Coins.π¦ Concept: A classic DP problem! Built a dp[] array where dp[i] stores the minimum coins. #gfg160 #geekstreak2025 #DSA #CodingChallenge #160DaysOfCode #LetsConnect #LearnInPublic
0
0
3
π #Day119 | #gfg160 with @geeksforgeeks π.π§© Problem Solved: 0 - 1 Knapsack Problem ππ¦.π οΈ Core Idea: Classic Dynamic Programming built a table to decide whether to include or excludeπ§ βοΈ. #gfg160 #geekstreak2025 #DSA #CodingChallenge #160DaysOfCode #LetsConnect #LearnInPublic
0
0
4
π #Day118 | #gfg160 with @geeksforgeeks π.π§© Problem Solved: Min Cost Climbing Stairs π°πͺ.π οΈ Core Idea: Solved using bottom-up Dynamic Programmingβπ§ π‘. #gfg160 #geekstreak2025 #DSA #CodingChallenge #160DaysOfCode #LetsConnect #LearnInPublic
0
0
5
π #Day117 | #gfg160 with @geeksforgeeks π.π§© Problem Solved: Ways to Reach the nβth Stair πͺπ’.π οΈ Core Idea: Classic Dynamic Programming using recurrence.π§ βοΈ. #gfg160 #geekstreak2025 #DSA #CodingChallenge #160DaysOfCode #LetsConnect #LearnInPublic
0
0
3
π #Day116 | #gfg160 with @geeksforgeeks π.π§© Problem Solved: Edit Distance βοΈπ.π οΈ Core Idea: Used DP to compute minimum insertions, deletions, and replacements. π§ π. #gfg160 #geekstreak2025 #DSA #CodingChallenge #160DaysOfCode #LetsConnect #LearnInPublic
1
0
3
π #Day115 | #gfg160 with @geeksforgeeks π.π§© Problem Solved: Count All Palindromic Substrings ππ.π οΈ Core Idea: Used DP to count all valid palindromic substringsπ§ π. #gfg160 #geekstreak2025 #DSA #CodingChallenge #160DaysOfCode #LetsConnect #LearnInPublic
0
0
5
π #Day114 | #gfg160 with @geeksforgeeks π.π§© Problem Solved: Longest Palindromic Substring ππ.π οΈ Core Idea: Solved using expand around center and Dynamic Programming.π§ πͺ. #gfg160 #geekstreak2025 #DSA #CodingChallenge #160DaysOfCode #LetsConnect #LearnInPublic
0
0
2
π #Day113 | #gfg160 with @geeksforgeeks π.π§© Problem Solved: Longest Palindromic Subsequence π.π οΈ Core Idea: Applied Dynamic Programming by finding LCS of the string with its reverseπ§ π. #gfg160 #geekstreak2025 #DSA #CodingChallenge #160DaysOfCode #LetsConnect #LearnInPublic
0
0
4
π #Day112 | #gfg160 with @geeksforgeeks π.π§© Problem Solved: Longest Common Subsequence ππ€.π οΈ Core Idea: Implemented classic Dynamic Programming approach. π§ π. #gfg160 #geekstreak2025 #DSA #CodingChallenge #160DaysOfCode #LetsConnect #LearnInPublic
0
0
10
π #Day111 | #gfg160 with @geeksforgeeks π.π§© Problem Solved: Longest String Chain ππ€.π οΈ Core Idea: Used DP with sorting based on string length. π§ βοΈ. #gfg160 #geekstreak2025 #DSA #CodingChallenge #160DaysOfCode #LetsConnect #LearnInPublic
0
0
3
π #Day110 | #gfg160 with @geeksforgeeks π.π§© Problem Solved: Longest Increasing Subsequence ππ’.π οΈ Core Idea: Solved using DP and optimized with binary search for LIS length. π§ βοΈ. #gfg160 #geekstreak2025 #DSA #CodingChallenge #160DaysOfCode #LetsConnect #LearnInPublic
0
0
5
π #Day109 | #gfg160 with @geeksforgeeks π.π§© Problem Solved: Longest Bounded-Difference Subarray πβοΈ.π οΈ Core Idea: Used a sliding window+multiset/deque to maintain min & max efficientlyπ§ . #gfg160 #geekstreak2025 #DSA #CodingChallenge #160DaysOfCode #LetsConnect #LearnInPublic
0
0
3
π #Day108 | #gfg160 with @geeksforgeeks π.π§© Problem Solved: Maximum of All Subarrays of Size K πͺπ.π οΈ Core Idea: Solved using a deque to maintain a sliding window of useful elementsββοΈπ§ . #gfg160 #geekstreak2025 #DSA #CodingChallenge #160DaysOfCode #LetsConnect #LearnInPublic
0
0
3
π #Day107 | #gfg160 with @geeksforgeeks π.π§© Problem Solved: Decode the String ππ€.π οΈ Core Idea: Used a stack to handle nested patterns[encoded_string] by tracking counts & substringsπ§ π§©. #gfg160 #geekstreak2025 #DSA #CodingChallenge #160DaysOfCode #LetsConnect #LearnInPublic
0
0
4
π #Day106 | #gfg160 with @geeksforgeeks π.π§© Problem Solved: Postfix Expression Evaluationβπ₯.π οΈ Core Idea: Used a stack to evaluate operandβpush numbers, pop two for operators & pushπ§ βοΈ. #gfg160 #geekstreak2025 #DSA #CodingChallenge #160DaysOfCode #LetsConnect #LearnInPublic
1
0
5