#dynamicprogramming zoekresultaten
๐งฉ 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
                                            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 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
                                            #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)
                                            
                                            
                                            
                                            ๐ Day 142: Edit Distance Classic DP on Strings problem ๐ก โ๏ธ Allowed operations: Insert, Delete, Replace #DynamicProgramming #Strings #EditDistance #gfg160 #100DaysOfCode #geekstreak2025 @geeksforgeeks
                                            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
                                            Leetcode 1092. Shortest Common Supersequence Build LCS table to find overlaps 1๏ธโฃ If chars match - extend sequence 2๏ธโฃ If not - take max from left/top 3๏ธโฃ Backtrack through DP table to build final supersequence #DynamicProgramming #LearnInPublic #LeetCode
                                            #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
                                            Learning in public #Day35 1. DSA - 4 questions on DP on subsets and subsequences, Leetcode 2035(hard q). less productive day :( #DynamicProgramming
                                            ๐ป 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
                                            
                                            
                                            
                                            ๐บ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 138: Matrix Chain Multiplication Solved using DP + Optimal Parenthesization ๐ก โ๏ธ Recurrence: dp[i][j] = min(dp[i][k] + dp[k+1][j] + arr[i-1]*arr[k]*arr[j]) โฑ๏ธ O(nยณ) time, O(nยฒ) space #DynamicProgramming #MCM #gfg160 #100DaysOfCode #geekstreak2025 @geeksforgeeks
                                            
                                            ๐งต Day 134: Print All LCS & Longest String Chain โ๏ธ Print All LCS โ backtrack from DP table to generate every sequence โ๏ธ Longest String Chain โ sort by length, DP on word transformations #DynamicProgramming #Strings #gfg160 #100DaysOfCode #geekstreak2025 @geeksforgeeks
                                            
                                            
                                            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
                                            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
                                            
                                            ๐ 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
                                            
                                            
                                            
                                            ๐ง 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
โก Day 29 of #100DaysOfCode Solved: Maximum Product Subarray ๐ฅ Tackled the challenge of handling negative numbers by tracking both max and min products dynamically. ๐ก Lesson: Dynamic thinking helps handle edge cases smoothly. #LeetCode #DynamicProgramming #Arrays #100DaysOfCode
                                            Best resource to learn DP ? #dynamicprogramming #AI
Day 88โ92 | Sigma 7.0 | #100DaysOfCode Learned: ๐น Rod Cutting ๐น LCS (All 3 Approaches) ๐น Longest Common Substring ๐น LIS ๐น Edit Distance Thanks @ShradhaKhapra_ Maโam & @ApnacollegeX ๐ #DSA #DynamicProgramming #ApnaCollege #ShradhaKhapra #CodingJourney
                                            
                                            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 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
                                            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
                                            ๐งฉ 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
                                            #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)
                                            
                                            
                                            
                                            ๐บ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
                                            ๐ป 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
                                            
                                            ๐ 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
                                            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
                                            Leetcode 1092. Shortest Common Supersequence Build LCS table to find overlaps 1๏ธโฃ If chars match - extend sequence 2๏ธโฃ If not - take max from left/top 3๏ธโฃ Backtrack through DP table to build final supersequence #DynamicProgramming #LearnInPublic #LeetCode
                                            ๐ 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
                                            
                                            
                                            
                                            ๐Day 27 of DSA Journey: Solved DP Question #DSA #CodingJourney #DynamicProgramming #100DaysOfCode Frog Jump
                                            ๐ 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 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
                                            #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
                                            ๐ย 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
                                            Something went wrong.
Something went wrong.
United States Trends
- 1. Cuomo 117K posts
 - 2. Koa Peat N/A
 - 3. #OlandriaxCFDAAwards 6,137 posts
 - 4. Cowboys 29.7K posts
 - 5. Caleb Wilson N/A
 - 6. Walt Weiss 2,689 posts
 - 7. Monday Night Football 8,050 posts
 - 8. Harvey Weinstein 8,147 posts
 - 9. Cardinals 15.8K posts
 - 10. Braves 12K posts
 - 11. Sliwa 33.5K posts
 - 12. Teen Vogue 4,626 posts
 - 13. Arizona 31.1K posts
 - 14. Schwab 5,782 posts
 - 15. Hamburger Helper 2,829 posts
 - 16. Diane Ladd 6,475 posts
 - 17. Ben Shapiro 39.6K posts
 - 18. Snit N/A
 - 19. Myles Turner 1,622 posts
 - 20. $PLTR 20.7K posts