#dynamicprogramming arama sonuçları

🧩 LeetCode 300: Longest Increasing Subsequence 🔑 Idea → DP + Binary Search ⚡ Approach → Recursion + Memoization → Tabulation → O(n log n) 💡 Learning → Optimizing step by step shows the true power of DP 🚀 #LeetCode #DynamicProgramming #DSA #100DaysOfCode #ProblemSolving

Tabish_khan090's tweet image. 🧩 LeetCode 300: Longest Increasing Subsequence
🔑 Idea → DP + Binary Search
⚡ Approach → Recursion + Memoization → Tabulation → O(n log n)
💡 Learning → Optimizing step by step shows the true power of DP 🚀

#LeetCode #DynamicProgramming #DSA #100DaysOfCode #ProblemSolving

#Day 19 working with @cracked_black ✅ Solved 2 LeetCode questions ✅ Started with Dynamic Programming ✅ Made progress on my React project Step by step 🚀 #DSA #DynamicProgramming #React"

RiyanshiCh84858's tweet image. #Day 19 working with @cracked_black 
✅ Solved 2 LeetCode questions
✅ Started with Dynamic Programming
✅ Made progress on my React project
Step by step 🚀 #DSA #DynamicProgramming #React"
RiyanshiCh84858's tweet image. #Day 19 working with @cracked_black 
✅ Solved 2 LeetCode questions
✅ Started with Dynamic Programming
✅ Made progress on my React project
Step by step 🚀 #DSA #DynamicProgramming #React"
RiyanshiCh84858's tweet image. #Day 19 working with @cracked_black 
✅ Solved 2 LeetCode questions
✅ Started with Dynamic Programming
✅ Made progress on my React project
Step by step 🚀 #DSA #DynamicProgramming #React"

#DynamicProgramming. started today learn 3 approaches to tackle after recursion m1->top to down approach m2->tabulation OR down to UP approach m3->Space Optimisation approach(m2 ka pattern dekho kuchh milega wahi m3 hai)

ASHUTOSHKU93588's tweet image. #DynamicProgramming.
started today
learn 3 approaches to tackle after recursion
m1->top to down approach
m2->tabulation OR down to UP approach
m3->Space Optimisation approach(m2 ka pattern dekho kuchh milega wahi m3 hai)
ASHUTOSHKU93588's tweet image. #DynamicProgramming.
started today
learn 3 approaches to tackle after recursion
m1->top to down approach
m2->tabulation OR down to UP approach
m3->Space Optimisation approach(m2 ka pattern dekho kuchh milega wahi m3 hai)
ASHUTOSHKU93588's tweet image. #DynamicProgramming.
started today
learn 3 approaches to tackle after recursion
m1->top to down approach
m2->tabulation OR down to UP approach
m3->Space Optimisation approach(m2 ka pattern dekho kuchh milega wahi m3 hai)
ASHUTOSHKU93588's tweet image. #DynamicProgramming.
started today
learn 3 approaches to tackle after recursion
m1->top to down approach
m2->tabulation OR down to UP approach
m3->Space Optimisation approach(m2 ka pattern dekho kuchh milega wahi m3 hai)

Print Longest Increasing Subsequence 1️⃣ Build dp - length of LIS at each index 2️⃣ Use hash - track predecessors to backtrack 3️⃣ Find LIS end, trace back, reverse - actual subsequence #DynamicProgramming #100DaysOfCode #LearnInPublic #Coding #DSA

SainiAyush55396's tweet image. Print Longest Increasing Subsequence

1️⃣ Build dp - length of LIS at each index
2️⃣ Use hash - track predecessors to backtrack
3️⃣ Find LIS end, trace back, reverse - actual subsequence 

#DynamicProgramming #100DaysOfCode #LearnInPublic #Coding #DSA

Pulling an all-nighter 🌙 Started with DP but decided to brush up recursion first 🔁 #Coding #Recursion #DynamicProgramming #AllNighter #DevLife

gvegeta944's tweet image. Pulling an all-nighter 🌙  
Started with DP but decided to brush up recursion first 🔁  
#Coding #Recursion #DynamicProgramming #AllNighter #DevLife

Leetcode 300. Longest Increasing Subsequence 1️⃣ Naive recursion: take/skip - exponential 2️⃣ Add "last chosen index" - valid subsequences 3️⃣ Memoize (ind,last+1) Brute -> State -> DP #LearnInPublic #100DaysOfCode #DynamicProgramming #LeetCode

SainiAyush55396's tweet image. Leetcode 300. Longest Increasing Subsequence

1️⃣ Naive recursion: take/skip - exponential
2️⃣ Add "last chosen index" - valid subsequences
3️⃣ Memoize (ind,last+1) 

Brute -> State -> DP 
#LearnInPublic #100DaysOfCode #DynamicProgramming #LeetCode

Day 97 | Sigma 7.0 | #100DaysOfCode Covered more DP gems 💎 🔹 MCM (Memoization & Tabulation) 🔹 Minimum Partitioning 🔹 Minimum Array Jumps Bit by bit, mastering Dynamic Programming 💪 Thanks @ShradhaKhapra_ Ma’am & @ApnacollegeX 🙏 #DSA #DynamicProgramming #ShradhaKhapra #DP

BishwajitG03's tweet image. Day 97 | Sigma 7.0 | #100DaysOfCode
Covered more DP gems 💎
🔹 MCM (Memoization & Tabulation)
🔹 Minimum Partitioning
🔹 Minimum Array Jumps
Bit by bit, mastering Dynamic Programming 💪
Thanks @ShradhaKhapra_ Ma’am & @ApnacollegeX 🙏

#DSA #DynamicProgramming #ShradhaKhapra #DP
BishwajitG03's tweet image. Day 97 | Sigma 7.0 | #100DaysOfCode
Covered more DP gems 💎
🔹 MCM (Memoization & Tabulation)
🔹 Minimum Partitioning
🔹 Minimum Array Jumps
Bit by bit, mastering Dynamic Programming 💪
Thanks @ShradhaKhapra_ Ma’am & @ApnacollegeX 🙏

#DSA #DynamicProgramming #ShradhaKhapra #DP

🧩 LeetCode 1547: Minimum Cost to Cut a Stick 🔑 Idea → Interval #DP + Divide & Conquer ⚡ Approach → Recursive splits + memoization 💡 Learning → DP on partitions = optimal cuts + state reuse 🚀 #LeetCode #DynamicProgramming #Algorithms #DSA #ProblemSolving #100DaysOfCode

Tabish_khan090's tweet image. 🧩 LeetCode 1547: Minimum Cost to Cut a Stick
🔑 Idea → Interval #DP + Divide & Conquer
⚡ Approach → Recursive splits + memoization
💡 Learning → DP on partitions = optimal cuts + state reuse 🚀

#LeetCode #DynamicProgramming #Algorithms #DSA #ProblemSolving #100DaysOfCode

💻 DSA Day 55 Today I learned Best Time to Buy & Sell Stock (DP on Stocks). Used Dynamic Programming (space optimized). Time Complexity: O(n) Space Complexity: O(1) 👉 Key Idea: Keep track of the minimum price & maximize profit. #100DaysOfCode #DSA #DynamicProgramming

OfflineWaliSoul's tweet image. 💻 DSA Day 55
Today I learned Best Time to Buy & Sell Stock (DP on Stocks).
Used Dynamic Programming (space optimized).
Time Complexity: O(n)
Space Complexity: O(1)
👉 Key Idea: Keep track of the minimum price & maximize profit.
#100DaysOfCode #DSA #DynamicProgramming
OfflineWaliSoul's tweet image. 💻 DSA Day 55
Today I learned Best Time to Buy & Sell Stock (DP on Stocks).
Used Dynamic Programming (space optimized).
Time Complexity: O(n)
Space Complexity: O(1)
👉 Key Idea: Keep track of the minimum price & maximize profit.
#100DaysOfCode #DSA #DynamicProgramming

📘 Wrapped up with the 7th Dynamic Programming pattern — DP on LIS (Longest Increasing Subsequence)! 🎯 Up Next: ➡️ DP on MCM (Matrix Chain Multiplication)! ➡️ DP on Squares! #StriversA2ZDSASheet #100DaysOfCode #DynamicProgramming #DSA #CodingJourney

Prajwald012's tweet image. 📘 Wrapped up with the 7th Dynamic Programming pattern — DP on LIS (Longest Increasing Subsequence)!

🎯 Up Next:
➡️ DP on MCM (Matrix Chain Multiplication)!
➡️ DP on Squares!

#StriversA2ZDSASheet #100DaysOfCode #DynamicProgramming #DSA #CodingJourney
Prajwald012's tweet image. 📘 Wrapped up with the 7th Dynamic Programming pattern — DP on LIS (Longest Increasing Subsequence)!

🎯 Up Next:
➡️ DP on MCM (Matrix Chain Multiplication)!
➡️ DP on Squares!

#StriversA2ZDSASheet #100DaysOfCode #DynamicProgramming #DSA #CodingJourney
Prajwald012's tweet image. 📘 Wrapped up with the 7th Dynamic Programming pattern — DP on LIS (Longest Increasing Subsequence)!

🎯 Up Next:
➡️ DP on MCM (Matrix Chain Multiplication)!
➡️ DP on Squares!

#StriversA2ZDSASheet #100DaysOfCode #DynamicProgramming #DSA #CodingJourney
Prajwald012's tweet image. 📘 Wrapped up with the 7th Dynamic Programming pattern — DP on LIS (Longest Increasing Subsequence)!

🎯 Up Next:
➡️ DP on MCM (Matrix Chain Multiplication)!
➡️ DP on Squares!

#StriversA2ZDSASheet #100DaysOfCode #DynamicProgramming #DSA #CodingJourney

🔺Day 56/100 DSA Solved Triangle Minimum Path Sum using bottom-up DP. Pick the smaller of the two paths below at each step → final answer at the top! 💡 #100DaysOfCode #DSA #DynamicProgramming

Khushii__19's tweet image. 🔺Day 56/100 DSA
Solved Triangle Minimum Path Sum using bottom-up DP.
Pick the smaller of the two paths below at each step → final answer at the top! 💡
#100DaysOfCode #DSA #DynamicProgramming

Learning in public #Day35 1. DSA - 4 questions on DP on subsets and subsequences, Leetcode 2035(hard q). less productive day :( #DynamicProgramming

krizpy456's tweet image. Learning in public #Day35
1. DSA - 4 questions on DP on subsets and subsequences, Leetcode 2035(hard q).

less productive day :(
#DynamicProgramming

🗓️Day-105/365 | #365DaysOfCode 💻| @geeksforgeeks #dynamicprogramming in #DSA ✅Count Ways To Reach n'th stair → Recursion → Top-Down (Memoization) → Bottom-Up (Tabulation) → Space Optimization 🔗Course Link: geeksforgeeks.org/nation-skill-u… #skillupwithgfg #nationskillup #gfg

amanhaidry's tweet image. 🗓️Day-105/365 | #365DaysOfCode 💻| @geeksforgeeks  

#dynamicprogramming  in #DSA 
✅Count Ways To Reach n'th stair
→ Recursion
→ Top-Down (Memoization)
→ Bottom-Up (Tabulation)
→ Space Optimization

🔗Course Link: geeksforgeeks.org/nation-skill-u…
#skillupwithgfg #nationskillup #gfg
amanhaidry's tweet image. 🗓️Day-105/365 | #365DaysOfCode 💻| @geeksforgeeks  

#dynamicprogramming  in #DSA 
✅Count Ways To Reach n'th stair
→ Recursion
→ Top-Down (Memoization)
→ Bottom-Up (Tabulation)
→ Space Optimization

🔗Course Link: geeksforgeeks.org/nation-skill-u…
#skillupwithgfg #nationskillup #gfg
amanhaidry's tweet image. 🗓️Day-105/365 | #365DaysOfCode 💻| @geeksforgeeks  

#dynamicprogramming  in #DSA 
✅Count Ways To Reach n'th stair
→ Recursion
→ Top-Down (Memoization)
→ Bottom-Up (Tabulation)
→ Space Optimization

🔗Course Link: geeksforgeeks.org/nation-skill-u…
#skillupwithgfg #nationskillup #gfg
amanhaidry's tweet image. 🗓️Day-105/365 | #365DaysOfCode 💻| @geeksforgeeks  

#dynamicprogramming  in #DSA 
✅Count Ways To Reach n'th stair
→ Recursion
→ Top-Down (Memoization)
→ Bottom-Up (Tabulation)
→ Space Optimization

🔗Course Link: geeksforgeeks.org/nation-skill-u…
#skillupwithgfg #nationskillup #gfg

🚀Day 27 of DSA Journey: Solved DP Question #DSA #CodingJourney #DynamicProgramming #100DaysOfCode Frog Jump

SourajitSa42496's tweet image. 🚀Day 27 of DSA Journey: Solved DP Question  #DSA #CodingJourney #DynamicProgramming #100DaysOfCode 
Frog Jump

🚀Day 28 of DSA Journey: Solved DP Question #DSA #CodingJourney #DynamicProgramming #100DaysOfCode Maximum sum of non-adjacent elements

SourajitSa42496's tweet image. 🚀Day 28 of DSA Journey: Solved DP Question  #DSA #CodingJourney #DynamicProgramming #100DaysOfCode  
Maximum sum of non-adjacent elements

#Day83 Solved Coin Change II 💰using Tabulation DP 🔹Transition:  if coins[i-1] <= j: dp[i][j] = dp[i][j - coins[i-1]] + dp[i-1][j]  else → exclude: dp[i][j] = dp[i-1][j] Pattern: Count of subsets with repetition allowed #DynamicProgramming #LeetCode #100DaysOfCode #DSA #tech

singh_jayraj_05's tweet image. #Day83
Solved Coin Change II 💰using Tabulation DP

🔹Transition:
 if coins[i-1] &amp;lt;= j:
 dp[i][j] = dp[i][j - coins[i-1]] + dp[i-1][j]
 else → exclude: dp[i][j] = dp[i-1][j]

Pattern: Count of subsets with repetition allowed
#DynamicProgramming #LeetCode #100DaysOfCode #DSA #tech

🧵 Day 264 of #geekstreak2025 ✅ GFG POTD: Unique Paths in a Grid 🧠 Used classic DP approach — bottom-up tabulation to count ways from (0,0) to (n-1,m-1). Each cell = sum of top & left paths Efficient and elegant! 🔁 #dsa #dynamicprogramming #grid #potd #gfg264

SumitKumar9128's tweet image. 🧵 Day 264 of #geekstreak2025
✅ GFG POTD: Unique Paths in a Grid
🧠 Used classic DP approach — bottom-up tabulation to count ways from (0,0) to (n-1,m-1).
Each cell = sum of top &amp;amp; left paths 
Efficient and elegant!

🔁 #dsa #dynamicprogramming #grid #potd #gfg264

🗓️Day-105/365 | #365DaysOfCode 💻| @geeksforgeeks #dynamicprogramming in #DSA ✅Count Ways To Reach n'th stair → Recursion → Top-Down (Memoization) → Bottom-Up (Tabulation) → Space Optimization 🔗Course Link: geeksforgeeks.org/nation-skill-u… #skillupwithgfg #nationskillup #gfg

amanhaidry's tweet image. 🗓️Day-105/365 | #365DaysOfCode 💻| @geeksforgeeks  

#dynamicprogramming  in #DSA 
✅Count Ways To Reach n&apos;th stair
→ Recursion
→ Top-Down (Memoization)
→ Bottom-Up (Tabulation)
→ Space Optimization

🔗Course Link: geeksforgeeks.org/nation-skill-u…
#skillupwithgfg #nationskillup #gfg
amanhaidry's tweet image. 🗓️Day-105/365 | #365DaysOfCode 💻| @geeksforgeeks  

#dynamicprogramming  in #DSA 
✅Count Ways To Reach n&apos;th stair
→ Recursion
→ Top-Down (Memoization)
→ Bottom-Up (Tabulation)
→ Space Optimization

🔗Course Link: geeksforgeeks.org/nation-skill-u…
#skillupwithgfg #nationskillup #gfg
amanhaidry's tweet image. 🗓️Day-105/365 | #365DaysOfCode 💻| @geeksforgeeks  

#dynamicprogramming  in #DSA 
✅Count Ways To Reach n&apos;th stair
→ Recursion
→ Top-Down (Memoization)
→ Bottom-Up (Tabulation)
→ Space Optimization

🔗Course Link: geeksforgeeks.org/nation-skill-u…
#skillupwithgfg #nationskillup #gfg
amanhaidry's tweet image. 🗓️Day-105/365 | #365DaysOfCode 💻| @geeksforgeeks  

#dynamicprogramming  in #DSA 
✅Count Ways To Reach n&apos;th stair
→ Recursion
→ Top-Down (Memoization)
→ Bottom-Up (Tabulation)
→ Space Optimization

🔗Course Link: geeksforgeeks.org/nation-skill-u…
#skillupwithgfg #nationskillup #gfg

Dynamic programming grind going strong, even with this messy setup 💻🔥 #DynamicProgramming #DSA #CodingLife #100DaysOfCode

gvegeta944's tweet image. Dynamic programming grind going strong, even with this messy setup 💻🔥 #DynamicProgramming #DSA #CodingLife #100DaysOfCode

🗓️Day-104 | #365DaysOfCode 💻| @geeksforgeeks #dynamicprogramming in #DSA ✅Introduction ✅Steps to solve ✅Nth Fibonacci → Recursion → Memoization → Bottom-Up → Space Optimized 🔗Course Link: geeksforgeeks.org/nation-skill-u… #skillupwithgfg #nationskillup #365DaysOfDSA #gfg

amanhaidry's tweet image. 🗓️Day-104 | #365DaysOfCode 💻| @geeksforgeeks 

#dynamicprogramming  in #DSA
✅Introduction
✅Steps to solve
✅Nth Fibonacci
 → Recursion
 → Memoization
 → Bottom-Up
 → Space Optimized

🔗Course Link: geeksforgeeks.org/nation-skill-u…
#skillupwithgfg #nationskillup #365DaysOfDSA #gfg
amanhaidry's tweet image. 🗓️Day-104 | #365DaysOfCode 💻| @geeksforgeeks 

#dynamicprogramming  in #DSA
✅Introduction
✅Steps to solve
✅Nth Fibonacci
 → Recursion
 → Memoization
 → Bottom-Up
 → Space Optimized

🔗Course Link: geeksforgeeks.org/nation-skill-u…
#skillupwithgfg #nationskillup #365DaysOfDSA #gfg
amanhaidry's tweet image. 🗓️Day-104 | #365DaysOfCode 💻| @geeksforgeeks 

#dynamicprogramming  in #DSA
✅Introduction
✅Steps to solve
✅Nth Fibonacci
 → Recursion
 → Memoization
 → Bottom-Up
 → Space Optimized

🔗Course Link: geeksforgeeks.org/nation-skill-u…
#skillupwithgfg #nationskillup #365DaysOfDSA #gfg
amanhaidry's tweet image. 🗓️Day-104 | #365DaysOfCode 💻| @geeksforgeeks 

#dynamicprogramming  in #DSA
✅Introduction
✅Steps to solve
✅Nth Fibonacci
 → Recursion
 → Memoization
 → Bottom-Up
 → Space Optimized

🔗Course Link: geeksforgeeks.org/nation-skill-u…
#skillupwithgfg #nationskillup #365DaysOfDSA #gfg

Two paths, one problem. 💧 A greedy stack that flows like water. 📊 A DP table built as an architecture. Both chase the same cost function, but reveal different kinds of beauty in algorithm design. #algorithms #DynamicProgramming #CompetitiveProgramming

HaochengLin2327's tweet image. Two paths, one problem.

💧 A greedy stack that flows like water.
📊 A DP table built as an architecture.

Both chase the same cost function, but reveal different kinds of beauty in algorithm design.

#algorithms #DynamicProgramming #CompetitiveProgramming

Pulling an all-nighter 🌙 Started with DP but decided to brush up recursion first 🔁 #Coding #Recursion #DynamicProgramming #AllNighter #DevLife

gvegeta944's tweet image. Pulling an all-nighter 🌙  
Started with DP but decided to brush up recursion first 🔁  
#Coding #Recursion #DynamicProgramming #AllNighter #DevLife

Day 97 | Sigma 7.0 | #100DaysOfCode Covered more DP gems 💎 🔹 MCM (Memoization & Tabulation) 🔹 Minimum Partitioning 🔹 Minimum Array Jumps Bit by bit, mastering Dynamic Programming 💪 Thanks @ShradhaKhapra_ Ma’am & @ApnacollegeX 🙏 #DSA #DynamicProgramming #ShradhaKhapra #DP

BishwajitG03's tweet image. Day 97 | Sigma 7.0 | #100DaysOfCode
Covered more DP gems 💎
🔹 MCM (Memoization &amp;amp; Tabulation)
🔹 Minimum Partitioning
🔹 Minimum Array Jumps
Bit by bit, mastering Dynamic Programming 💪
Thanks @ShradhaKhapra_ Ma’am &amp;amp; @ApnacollegeX 🙏

#DSA #DynamicProgramming #ShradhaKhapra #DP
BishwajitG03's tweet image. Day 97 | Sigma 7.0 | #100DaysOfCode
Covered more DP gems 💎
🔹 MCM (Memoization &amp;amp; Tabulation)
🔹 Minimum Partitioning
🔹 Minimum Array Jumps
Bit by bit, mastering Dynamic Programming 💪
Thanks @ShradhaKhapra_ Ma’am &amp;amp; @ApnacollegeX 🙏

#DSA #DynamicProgramming #ShradhaKhapra #DP

🚀 Day 77 of my #100DaysOfDSA Today I practiced: ✅ Balanced Parentheses combinations 🧩 ✅ Minimum Partitioning 🔢 ✅ Minimum Partitioning (Zero Difference) ⚖️ ✅ Tribonacci Series 🔺 Slowly mastering DP one problem at a time 💪 #DynamicProgramming #CodingJourney #DSA

sauravsmehta143's tweet image. 🚀 Day 77 of my #100DaysOfDSA
Today I practiced:
✅ Balanced Parentheses combinations 🧩
✅ Minimum Partitioning 🔢
✅ Minimum Partitioning (Zero Difference) ⚖️
✅ Tribonacci Series 🔺
Slowly mastering DP one problem at a time 💪
#DynamicProgramming #CodingJourney #DSA
sauravsmehta143's tweet image. 🚀 Day 77 of my #100DaysOfDSA
Today I practiced:
✅ Balanced Parentheses combinations 🧩
✅ Minimum Partitioning 🔢
✅ Minimum Partitioning (Zero Difference) ⚖️
✅ Tribonacci Series 🔺
Slowly mastering DP one problem at a time 💪
#DynamicProgramming #CodingJourney #DSA
sauravsmehta143's tweet image. 🚀 Day 77 of my #100DaysOfDSA
Today I practiced:
✅ Balanced Parentheses combinations 🧩
✅ Minimum Partitioning 🔢
✅ Minimum Partitioning (Zero Difference) ⚖️
✅ Tribonacci Series 🔺
Slowly mastering DP one problem at a time 💪
#DynamicProgramming #CodingJourney #DSA
sauravsmehta143's tweet image. 🚀 Day 77 of my #100DaysOfDSA
Today I practiced:
✅ Balanced Parentheses combinations 🧩
✅ Minimum Partitioning 🔢
✅ Minimum Partitioning (Zero Difference) ⚖️
✅ Tribonacci Series 🔺
Slowly mastering DP one problem at a time 💪
#DynamicProgramming #CodingJourney #DSA

Opinion : Learn DP before Graphs. DP teaches subproblem thinking—Graphs are just those subproblems connected. Master the logic, not the library. 💡 #DSA #DynamicProgramming #Graphs #TechTwitter


Day 76 of my DSA journey 💻 Learned dynamic programming problems: 🔹 Longest Common Substring 🔹 Longest Increasing Subsequence 🔹 Wildcard Matching 🔹 String Conversion 🔹 Edit Distance Each problem deepened my DP understanding! #100DaysOfCode #DSA #DynamicProgramming

sauravsmehta143's tweet image. Day 76 of my DSA journey 💻
Learned dynamic programming problems:
🔹 Longest Common Substring
🔹 Longest Increasing Subsequence
🔹 Wildcard Matching
🔹 String Conversion
🔹 Edit Distance
Each problem deepened my DP understanding! #100DaysOfCode #DSA #DynamicProgramming
sauravsmehta143's tweet image. Day 76 of my DSA journey 💻
Learned dynamic programming problems:
🔹 Longest Common Substring
🔹 Longest Increasing Subsequence
🔹 Wildcard Matching
🔹 String Conversion
🔹 Edit Distance
Each problem deepened my DP understanding! #100DaysOfCode #DSA #DynamicProgramming
sauravsmehta143's tweet image. Day 76 of my DSA journey 💻
Learned dynamic programming problems:
🔹 Longest Common Substring
🔹 Longest Increasing Subsequence
🔹 Wildcard Matching
🔹 String Conversion
🔹 Edit Distance
Each problem deepened my DP understanding! #100DaysOfCode #DSA #DynamicProgramming
sauravsmehta143's tweet image. Day 76 of my DSA journey 💻
Learned dynamic programming problems:
🔹 Longest Common Substring
🔹 Longest Increasing Subsequence
🔹 Wildcard Matching
🔹 String Conversion
🔹 Edit Distance
Each problem deepened my DP understanding! #100DaysOfCode #DSA #DynamicProgramming

🧠 Day 1 of learning Dynamic Programming (DP) in C++ begins today! I already know recursion now it’s time to learn how to remember solutions instead of repeating them. Let’s turn brute force into brilliance 🚀 #100DaysOfCode #DynamicProgramming #Cplusplus


#DynamicProgramming. started today learn 3 approaches to tackle after recursion m1->top to down approach m2->tabulation OR down to UP approach m3->Space Optimisation approach(m2 ka pattern dekho kuchh milega wahi m3 hai)

ASHUTOSHKU93588's tweet image. #DynamicProgramming.
started today
learn 3 approaches to tackle after recursion
m1-&amp;gt;top to down approach
m2-&amp;gt;tabulation OR down to UP approach
m3-&amp;gt;Space Optimisation approach(m2 ka pattern dekho kuchh milega wahi m3 hai)
ASHUTOSHKU93588's tweet image. #DynamicProgramming.
started today
learn 3 approaches to tackle after recursion
m1-&amp;gt;top to down approach
m2-&amp;gt;tabulation OR down to UP approach
m3-&amp;gt;Space Optimisation approach(m2 ka pattern dekho kuchh milega wahi m3 hai)
ASHUTOSHKU93588's tweet image. #DynamicProgramming.
started today
learn 3 approaches to tackle after recursion
m1-&amp;gt;top to down approach
m2-&amp;gt;tabulation OR down to UP approach
m3-&amp;gt;Space Optimisation approach(m2 ka pattern dekho kuchh milega wahi m3 hai)
ASHUTOSHKU93588's tweet image. #DynamicProgramming.
started today
learn 3 approaches to tackle after recursion
m1-&amp;gt;top to down approach
m2-&amp;gt;tabulation OR down to UP approach
m3-&amp;gt;Space Optimisation approach(m2 ka pattern dekho kuchh milega wahi m3 hai)

🧩 LeetCode 300: Longest Increasing Subsequence 🔑 Idea → DP + Binary Search ⚡ Approach → Recursion + Memoization → Tabulation → O(n log n) 💡 Learning → Optimizing step by step shows the true power of DP 🚀 #LeetCode #DynamicProgramming #DSA #100DaysOfCode #ProblemSolving

Tabish_khan090's tweet image. 🧩 LeetCode 300: Longest Increasing Subsequence
🔑 Idea → DP + Binary Search
⚡ Approach → Recursion + Memoization → Tabulation → O(n log n)
💡 Learning → Optimizing step by step shows the true power of DP 🚀

#LeetCode #DynamicProgramming #DSA #100DaysOfCode #ProblemSolving

Pulling an all-nighter 🌙 Started with DP but decided to brush up recursion first 🔁 #Coding #Recursion #DynamicProgramming #AllNighter #DevLife

gvegeta944's tweet image. Pulling an all-nighter 🌙  
Started with DP but decided to brush up recursion first 🔁  
#Coding #Recursion #DynamicProgramming #AllNighter #DevLife

Day 97 | Sigma 7.0 | #100DaysOfCode Covered more DP gems 💎 🔹 MCM (Memoization & Tabulation) 🔹 Minimum Partitioning 🔹 Minimum Array Jumps Bit by bit, mastering Dynamic Programming 💪 Thanks @ShradhaKhapra_ Ma’am & @ApnacollegeX 🙏 #DSA #DynamicProgramming #ShradhaKhapra #DP

BishwajitG03's tweet image. Day 97 | Sigma 7.0 | #100DaysOfCode
Covered more DP gems 💎
🔹 MCM (Memoization &amp;amp; Tabulation)
🔹 Minimum Partitioning
🔹 Minimum Array Jumps
Bit by bit, mastering Dynamic Programming 💪
Thanks @ShradhaKhapra_ Ma’am &amp;amp; @ApnacollegeX 🙏

#DSA #DynamicProgramming #ShradhaKhapra #DP
BishwajitG03's tweet image. Day 97 | Sigma 7.0 | #100DaysOfCode
Covered more DP gems 💎
🔹 MCM (Memoization &amp;amp; Tabulation)
🔹 Minimum Partitioning
🔹 Minimum Array Jumps
Bit by bit, mastering Dynamic Programming 💪
Thanks @ShradhaKhapra_ Ma’am &amp;amp; @ApnacollegeX 🙏

#DSA #DynamicProgramming #ShradhaKhapra #DP

🧩 LeetCode 1547: Minimum Cost to Cut a Stick 🔑 Idea → Interval #DP + Divide & Conquer ⚡ Approach → Recursive splits + memoization 💡 Learning → DP on partitions = optimal cuts + state reuse 🚀 #LeetCode #DynamicProgramming #Algorithms #DSA #ProblemSolving #100DaysOfCode

Tabish_khan090's tweet image. 🧩 LeetCode 1547: Minimum Cost to Cut a Stick
🔑 Idea → Interval #DP + Divide &amp;amp; Conquer
⚡ Approach → Recursive splits + memoization
💡 Learning → DP on partitions = optimal cuts + state reuse 🚀

#LeetCode #DynamicProgramming #Algorithms #DSA #ProblemSolving #100DaysOfCode

Print Longest Increasing Subsequence 1️⃣ Build dp - length of LIS at each index 2️⃣ Use hash - track predecessors to backtrack 3️⃣ Find LIS end, trace back, reverse - actual subsequence #DynamicProgramming #100DaysOfCode #LearnInPublic #Coding #DSA

SainiAyush55396's tweet image. Print Longest Increasing Subsequence

1️⃣ Build dp - length of LIS at each index
2️⃣ Use hash - track predecessors to backtrack
3️⃣ Find LIS end, trace back, reverse - actual subsequence 

#DynamicProgramming #100DaysOfCode #LearnInPublic #Coding #DSA

🔺Day 56/100 DSA Solved Triangle Minimum Path Sum using bottom-up DP. Pick the smaller of the two paths below at each step → final answer at the top! 💡 #100DaysOfCode #DSA #DynamicProgramming

Khushii__19's tweet image. 🔺Day 56/100 DSA
Solved Triangle Minimum Path Sum using bottom-up DP.
Pick the smaller of the two paths below at each step → final answer at the top! 💡
#100DaysOfCode #DSA #DynamicProgramming

🚀Day 28 of DSA Journey: Solved DP Question #DSA #CodingJourney #DynamicProgramming #100DaysOfCode Maximum sum of non-adjacent elements

SourajitSa42496's tweet image. 🚀Day 28 of DSA Journey: Solved DP Question  #DSA #CodingJourney #DynamicProgramming #100DaysOfCode  
Maximum sum of non-adjacent elements

💻 DSA Day 55 Today I learned Best Time to Buy & Sell Stock (DP on Stocks). Used Dynamic Programming (space optimized). Time Complexity: O(n) Space Complexity: O(1) 👉 Key Idea: Keep track of the minimum price & maximize profit. #100DaysOfCode #DSA #DynamicProgramming

OfflineWaliSoul's tweet image. 💻 DSA Day 55
Today I learned Best Time to Buy &amp;amp; Sell Stock (DP on Stocks).
Used Dynamic Programming (space optimized).
Time Complexity: O(n)
Space Complexity: O(1)
👉 Key Idea: Keep track of the minimum price &amp;amp; maximize profit.
#100DaysOfCode #DSA #DynamicProgramming
OfflineWaliSoul's tweet image. 💻 DSA Day 55
Today I learned Best Time to Buy &amp;amp; Sell Stock (DP on Stocks).
Used Dynamic Programming (space optimized).
Time Complexity: O(n)
Space Complexity: O(1)
👉 Key Idea: Keep track of the minimum price &amp;amp; maximize profit.
#100DaysOfCode #DSA #DynamicProgramming

🚀 Day 142: Edit Distance Classic DP on Strings problem 💡 ✔️ Allowed operations: Insert, Delete, Replace #DynamicProgramming #Strings #EditDistance #gfg160 #100DaysOfCode #geekstreak2025 @geeksforgeeks

YojitKataria's tweet image. 🚀 Day 142: Edit Distance
Classic DP on Strings problem 💡
✔️ Allowed operations: Insert, Delete, Replace
#DynamicProgramming #Strings #EditDistance #gfg160 #100DaysOfCode #geekstreak2025
@geeksforgeeks

Day 63 of #100DaysOfCode 🚀 Solved Minimum Score Triangulation of Polygon (LeetCode 1039). #LeetCode #DynamicProgramming #ProblemSolving

Anurags44798025's tweet image. Day 63 of #100DaysOfCode 🚀

Solved Minimum Score Triangulation of Polygon (LeetCode 1039).
#LeetCode #DynamicProgramming #ProblemSolving

Leetcode 300. Longest Increasing Subsequence 1️⃣ Naive recursion: take/skip - exponential 2️⃣ Add "last chosen index" - valid subsequences 3️⃣ Memoize (ind,last+1) Brute -> State -> DP #LearnInPublic #100DaysOfCode #DynamicProgramming #LeetCode

SainiAyush55396's tweet image. Leetcode 300. Longest Increasing Subsequence

1️⃣ Naive recursion: take/skip - exponential
2️⃣ Add &quot;last chosen index&quot; - valid subsequences
3️⃣ Memoize (ind,last+1) 

Brute -&amp;gt; State -&amp;gt; DP 
#LearnInPublic #100DaysOfCode #DynamicProgramming #LeetCode

📘 Wrapped up with the 7th Dynamic Programming pattern — DP on LIS (Longest Increasing Subsequence)! 🎯 Up Next: ➡️ DP on MCM (Matrix Chain Multiplication)! ➡️ DP on Squares! #StriversA2ZDSASheet #100DaysOfCode #DynamicProgramming #DSA #CodingJourney

Prajwald012's tweet image. 📘 Wrapped up with the 7th Dynamic Programming pattern — DP on LIS (Longest Increasing Subsequence)!

🎯 Up Next:
➡️ DP on MCM (Matrix Chain Multiplication)!
➡️ DP on Squares!

#StriversA2ZDSASheet #100DaysOfCode #DynamicProgramming #DSA #CodingJourney
Prajwald012's tweet image. 📘 Wrapped up with the 7th Dynamic Programming pattern — DP on LIS (Longest Increasing Subsequence)!

🎯 Up Next:
➡️ DP on MCM (Matrix Chain Multiplication)!
➡️ DP on Squares!

#StriversA2ZDSASheet #100DaysOfCode #DynamicProgramming #DSA #CodingJourney
Prajwald012's tweet image. 📘 Wrapped up with the 7th Dynamic Programming pattern — DP on LIS (Longest Increasing Subsequence)!

🎯 Up Next:
➡️ DP on MCM (Matrix Chain Multiplication)!
➡️ DP on Squares!

#StriversA2ZDSASheet #100DaysOfCode #DynamicProgramming #DSA #CodingJourney
Prajwald012's tweet image. 📘 Wrapped up with the 7th Dynamic Programming pattern — DP on LIS (Longest Increasing Subsequence)!

🎯 Up Next:
➡️ DP on MCM (Matrix Chain Multiplication)!
➡️ DP on Squares!

#StriversA2ZDSASheet #100DaysOfCode #DynamicProgramming #DSA #CodingJourney

🗓️23 August 2025 ✅ Solved: 🔹 Matrix Chain Multiplication using Memoization 🔹 Matrix Chain Multiplication using Tabulation 💻learned about cloning, exception handling, collections framework, and enums - completely revised OOPs #DynamicProgramming #Java #oops #CodingJourney

Shivang141204's tweet image. 🗓️23 August 2025 
✅ Solved:
🔹 Matrix Chain Multiplication using Memoization 
🔹 Matrix Chain Multiplication using Tabulation 
💻learned about cloning, exception handling, collections framework, and enums - completely revised OOPs 
#DynamicProgramming #Java #oops  #CodingJourney
Shivang141204's tweet image. 🗓️23 August 2025 
✅ Solved:
🔹 Matrix Chain Multiplication using Memoization 
🔹 Matrix Chain Multiplication using Tabulation 
💻learned about cloning, exception handling, collections framework, and enums - completely revised OOPs 
#DynamicProgramming #Java #oops  #CodingJourney
Shivang141204's tweet image. 🗓️23 August 2025 
✅ Solved:
🔹 Matrix Chain Multiplication using Memoization 
🔹 Matrix Chain Multiplication using Tabulation 
💻learned about cloning, exception handling, collections framework, and enums - completely revised OOPs 
#DynamicProgramming #Java #oops  #CodingJourney

🚀Day 27 of DSA Journey: Solved DP Question #DSA #CodingJourney #DynamicProgramming #100DaysOfCode Frog Jump

SourajitSa42496's tweet image. 🚀Day 27 of DSA Journey: Solved DP Question  #DSA #CodingJourney #DynamicProgramming #100DaysOfCode 
Frog Jump

#Day83 Solved Coin Change II 💰using Tabulation DP 🔹Transition:  if coins[i-1] <= j: dp[i][j] = dp[i][j - coins[i-1]] + dp[i-1][j]  else → exclude: dp[i][j] = dp[i-1][j] Pattern: Count of subsets with repetition allowed #DynamicProgramming #LeetCode #100DaysOfCode #DSA #tech

singh_jayraj_05's tweet image. #Day83
Solved Coin Change II 💰using Tabulation DP

🔹Transition:
 if coins[i-1] &amp;lt;= j:
 dp[i][j] = dp[i][j - coins[i-1]] + dp[i-1][j]
 else → exclude: dp[i][j] = dp[i-1][j]

Pattern: Count of subsets with repetition allowed
#DynamicProgramming #LeetCode #100DaysOfCode #DSA #tech

🧵 Day 264 of #geekstreak2025 ✅ GFG POTD: Unique Paths in a Grid 🧠 Used classic DP approach — bottom-up tabulation to count ways from (0,0) to (n-1,m-1). Each cell = sum of top & left paths Efficient and elegant! 🔁 #dsa #dynamicprogramming #grid #potd #gfg264

SumitKumar9128's tweet image. 🧵 Day 264 of #geekstreak2025
✅ GFG POTD: Unique Paths in a Grid
🧠 Used classic DP approach — bottom-up tabulation to count ways from (0,0) to (n-1,m-1).
Each cell = sum of top &amp;amp; left paths 
Efficient and elegant!

🔁 #dsa #dynamicprogramming #grid #potd #gfg264

🚀 Day 383 of Code 🚀 Solved: ✅ 2787. Ways to Express an Integer as Sum of Powers #Day383 #LeetCode #DynamicProgramming #Math #Combinatorics #DSA #ProblemSolving #CodingChallenge #Algorithm #DataStructures #100DaysOfCode

Mohd_Saqib_'s tweet image. 🚀 Day 383 of Code 🚀

Solved:

✅ 2787. Ways to Express an Integer as Sum of Powers

#Day383 #LeetCode #DynamicProgramming #Math #Combinatorics #DSA #ProblemSolving #CodingChallenge #Algorithm #DataStructures #100DaysOfCode

📈 Day 133: LIS & LCS Double DP dose today! ✔️ Longest Increasing Subsequence ✔️ Longest Common Subsequence – classic 2D DP table approach #DynamicProgramming #LIS #LCS #gfg160 #100DaysOfCode #geekstreak2025 @geeksforgeeks

YojitKataria's tweet image. 📈 Day 133: LIS &amp;amp; LCS
Double DP dose today!
✔️ Longest Increasing Subsequence 
✔️ Longest Common Subsequence – classic 2D DP table approach
#DynamicProgramming #LIS #LCS #gfg160 #100DaysOfCode #geekstreak2025
@geeksforgeeks
YojitKataria's tweet image. 📈 Day 133: LIS &amp;amp; LCS
Double DP dose today!
✔️ Longest Increasing Subsequence 
✔️ Longest Common Subsequence – classic 2D DP table approach
#DynamicProgramming #LIS #LCS #gfg160 #100DaysOfCode #geekstreak2025
@geeksforgeeks
YojitKataria's tweet image. 📈 Day 133: LIS &amp;amp; LCS
Double DP dose today!
✔️ Longest Increasing Subsequence 
✔️ Longest Common Subsequence – classic 2D DP table approach
#DynamicProgramming #LIS #LCS #gfg160 #100DaysOfCode #geekstreak2025
@geeksforgeeks

Learning in public #Day35 1. DSA - 4 questions on DP on subsets and subsequences, Leetcode 2035(hard q). less productive day :( #DynamicProgramming

krizpy456's tweet image. Learning in public #Day35
1. DSA - 4 questions on DP on subsets and subsequences, Leetcode 2035(hard q).

less productive day :(
#DynamicProgramming

Loading...

Something went wrong.


Something went wrong.


United States Trends