Top Tweets for #dynamicProgramming
Decode and earn DP problem.
Similar to House Robber.
Solved using Recursion then Memoization and then Tabular.
One thing I can say is I am getting better at dp day by day.
Next question is Coin Change.
LC: 322
#dynamicprogramming #dp #LeetCode

Day 31 of #SDESheetChallenge -
Z Function
KMP Algorithm (LPS Array)
Minimum Insertions to Make a String Palindrome
Focused on - Pattern Matching, LPS Array & String DP.
@takeUforward_ @striver_79
#DSA #Strings #KMP #ZAlgorithm #DynamicProgramming #Algorithms #SDESheetChallenge

Just completed LCS from @striver_cp. 🔥
The best part wasn't the DP—it was understanding why the recurrence works instead of memorizing it.
How do you retain DP patterns after solving them once? 🤔
#DSA #DynamicProgramming

✅Done and Dusted,
But i never thought i would be stuck in question like coin change which is so intuitive but silly mistake and less fundamental clarity makes it worse.
Need to practice more is what i conclude.
Any solution for it anyone?
#DSA #DynamicProgramming

Day 21 🚀
Solved Minimum Insert and Delete to Convert.
✅ Binary Search + LIS (optimized)
✅ Dynamic Programming (LCS)
Formula:
Operations = (n − LCS) + (m − LCS)
Every problem is another step toward becoming a better problem solver. 💻
#DSA #CPP #DynamicProgramming #LCS

📅 Day 232/365 of #365DaysOfCode
💻 DSA: Solved 1 LeetCode problem:
Pascal's Triangle
🧠 Learned:
Dynamic programming through iterative row construction.
#LeetCode #DSA #DynamicProgramming #Arrays #ProblemSolving #365DaysOfCode #100DaysOfCode

Longest Palindromic Subsequence:
Had trouble solving it at first.
Thank you, @CSwithMIK. Your method helped me solve this question.
Complexity: O(n²)
#LeetCode
#dynamicprogramming
✌️✌️

🚀 #Day147/100 (Number of ZigZag Arrays I @LeetCode)!
Key: DP with 2 states (↑/↓). Prefix sums for O(1) transitions. dp0[j] = sum1[m] - sum1[j+1], dp1[j] = sum0[j].
⌛ O(n·m) | O(m)
✅ Accepted
@CoderArmy #100DaysOfCode #DSA #DynamicProgramming #Combinatorics #DSA26 #DAY147
![PankajB42550's tweet photo. 🚀 #Day147/100 (Number of ZigZag Arrays I @LeetCode)!
Key: DP with 2 states (↑/↓). Prefix sums for O(1) transitions. dp0[j] = sum1[m] - sum1[j+1], dp1[j] = sum0[j].
⌛ O(n·m) | O(m)
✅ Accepted
@CoderArmy #100DaysOfCode #DSA #DynamicProgramming #Combinatorics #DSA26 #DAY147 https://t.co/JNUjs59L5V](https://pbs.twimg.com/media/HLeyP0ZakAAS-NQ.jpg)
solved LIS (Longest Increasing Subsequence ) problem with dp.
thinking with bottom-up kind of little more challenging than top down approach. but simplicity of solution at the end worth it. 😄
#dsa #dynamicProgramming
Day 158/365
Solved LeetCode Q312 today.
Interval DP was the key insight here.
Thinking in terms of the last balloon to burst made the transitions much cleaner.
#26meDSAkhatam #buildinpublic #DynamicProgramming #IntervalDP

🗓️ Day 16 #SDESheetChallenge
Revised and solved the problems:
✅ Minimum Coins (Coin Change)
✅ Assign Cookies
✅ Subset Sum Equals Target
✅ Subsets II
#DSA #LeetCode #CPP #StriversSDEsheet #Greedy #Recursion #DynamicProgramming #ProblemSolving
@striver_79
@takeUforward_

Day 156/365
Solved LeetCode Q123 today.
State-based DP made it easier to track up to two transactions.
A great exercise in optimizing buy/sell decisions over time.
#26meDSAkhatam #buildinpublic #DynamicProgramming #StockTrading

• Solved LeetCode - Word Break 🧩
• Used Dynamic Programming to check valid word segmentation ⚡
• Strengthened understanding of DP state transitions 🧠
#100DaysOfCode #Java #DSA #DynamicProgramming #LeetCode #CodingJourney

🚀 Day 85 of #100DaysChallenge
📚 Topic: Dynamic Programming (DP)
Tandon for their valuable guidance throughout this learning journey.
💻 Consistency + Practice + Learning = Growth
#DynamicProgramming #DataStructuresAndAlgorithms #DSA #LeetCode #ProblemSolving

🚀 Day 84 of #100DaysOfCode Challenge
Today, I solved LeetCode 1931 – Painting a Grid With Three Different Colors (Hard) and explored an optimized Dynamic Programming + State Compression approach.
Key Learnings:
✅
#Day84 #100DaysOfCode #LeetCode #DynamicProgramming

Day 100
Continuing my #geekstreak journey with @geeksforgeeks POTD
Problem Solved: Count Sorted Digit Groupings
#geekstreak #codingchallenge #dsa #dynamicprogramming #problemSolving

83 Days of Consistency: Mastering Dynamic Programming 🚀
Consistency is the bridge between goals and accomplishment. Only 17 days to go!
#100DaysOfCode #CodingChallenge #DynamicProgramming #LeetCode #SoftwareEngineering #CoderArmy #ProgrammingJourney

🚀 Day - 82
💡 Topic: Dynamic Programming
Solved Longest Unequal Adjacent Groups Subsequence II using DP approach.
with Rohit Negi Coder army and Aditya Tandon
🔥 #100DaysChallenge Accepted 🤷🤔
#DynamicProgramming #DP #LeetCode #Cpp #CodingChallenge #DSA #Programmer

🚀 Day 81 of My Coding Journey: Mastering the Longest Increasing Subsequence (LIS) with Dynamic Programming! 🚀
#DynamicProgramming #DataStructures #Algorithms #LIS #CoderArmy #Consistency #PlacementPrep #Java #ProblemSolving #CodingJourney #SoftwareEngineering

🚀 Solved: Jump Game VII (@LeetCode - #Daily)
DP + sliding window: reachable if any dp[j] true for j in [i-maxJump, i-minJump].
⌛ O(n) | O(n)
🔥 #Day118/100
#DSA #DynamicProgramming #SlidingWindow #JumpGame #ProblemSolving #DSA26 #DAY118
![PankajB42550's tweet photo. 🚀 Solved: Jump Game VII (@LeetCode - #Daily)
DP + sliding window: reachable if any dp[j] true for j in [i-maxJump, i-minJump].
⌛ O(n) | O(n)
🔥 #Day118/100
#DSA #DynamicProgramming #SlidingWindow #JumpGame #ProblemSolving #DSA26 #DAY118 https://t.co/0SvVOoaIBi](https://pbs.twimg.com/media/HJKpyDdb0AAwzB8.jpg)
Last Seen Hashtags on Sotwe
ladyboybali
Seen from Singapore
priyankaarulmohan munda
Seen from India
검열
Seen from Japan
bops
Seen from New Zealand
madreinfiel
Seen from United States
نايا_خيري
Seen from France
knotted
Seen from Singapore
BestLiveAudioVisualRecording
Seen from United States
spy #caught
Seen from Algeria
old aunty
Seen from Netherlands
Most Popular Users

Elon Musk 
@elonmusk
240.7M followers

Barack Obama 
@barackobama
119.2M followers

Donald J. Trump 
@realdonaldtrump
111.7M followers

Cristiano Ronaldo 
@cristiano
110.7M followers

Narendra Modi 
@narendramodi
107M followers

Rihanna 
@rihanna
97.7M followers

NASA 
@nasa
92.2M followers

Justin Bieber 
@justinbieber
90.9M followers

KATY PERRY 
@katyperry
87.7M followers

Taylor Swift 
@taylorswift13
81.5M followers

Lady Gaga 
@ladygaga
73.1M followers

Virat Kohli 
@imvkohli
70M followers

Kim Kardashian 
@kimkardashian
69.8M followers

YouTube 
@youtube
68.7M followers

Bill Gates 
@billgates
63.9M followers

Neymar Jr 
@neymarjr
62.7M followers

The Ellen Show
@theellenshow
62.4M followers

CNN 
@cnn
61.9M followers

X 
@x
60.8M followers

Selena Gomez 
@selenagomez
60.8M followers































![PankajB42550's tweet photo. 🚀 Solved: Jump Game VII (@LeetCode - #Daily)
DP + sliding window: reachable if any dp[j] true for j in [i-maxJump, i-minJump].
⌛ O(n) | O(n)
🔥 #Day118/100
#DSA #DynamicProgramming #SlidingWindow #JumpGame #ProblemSolving #DSA26 #DAY118 https://t.co/0SvVOoaIBi](https://pbs.twimg.com/media/HJKpyDSbsAAQ-8Q.jpg)
![PankajB42550's tweet photo. 🚀 Solved: Jump Game VII (@LeetCode - #Daily)
DP + sliding window: reachable if any dp[j] true for j in [i-maxJump, i-minJump].
⌛ O(n) | O(n)
🔥 #Day118/100
#DSA #DynamicProgramming #SlidingWindow #JumpGame #ProblemSolving #DSA26 #DAY118 https://t.co/0SvVOoaIBi](https://pbs.twimg.com/media/HJKpyDKbYAADDxV.jpg)