#leetcode75 搜尋結果
Day 75 of #LeetCode75 Solved 739. Daily Temperatures Using a Monotonic Stack Track index of temperatures in a stack. Whenever we find a warmer day → pop & compute the wait time. Time:O(n) Space:O(n) #Day75 #LeetCode #DSA #Stack #MonotonicStack #CPlusPlus #CodingJourney
Day 74 of #LeetCode75 Learned to Solved 72. Edit Distance Used recursion + memoization to handle: Time: O(n*m) Space: O(n*m)#Day74 #LeetCode #DSA #DynamicProgramming #Recursion #CPlusPlus #CodingJourney #100DaysOfCode
Day 73 of #LeetCode75 452. Minimum Number of Arrows to Burst Balloons Key idea: Shoot one arrow for all overlapping intervals by minimizing the end range. Time: O(n log n) Space: O(1) #Day73 #LeetCode #DSA #GreedyAlgorithm #Intervals #CPlusPlus #CodingJourney #100DaysOfCode
Day 72 of #LeetCode75 – Non-overlapping Intervals (Greedy + Sorting) Sort by end time Count non-overlapping intervals Remove the rest Time:O(nlog n) Space:O(1) #LeetCode #100DaysOfCode #DSA #CPlusPlus #CodingJourney
Day 71 of #LeetCode75 Solved Problem 2235 – Add Two Integers. A simple one today Time Complexity:O(max (m,n)) Space Complexity: O(1) #LeetCode #DSA #100DaysOfCode #CodingJourney
Day 70 of #LeetCode75 Today’s problem was really tough for me — Evaluate Division. Tried multiple times, got stuck, got frustrated… But didn’t give up. I understood and solved it with the help of YouTube Not my cleanest day, but definitely a learning day. Progress is progress.
Day 69 of #LeetCode75 – Problem 790 (Domino & Tromino Tiling) Today learned the DP + recurrence relation approach. Interesting formula: T(n) = 2·T(n-1) + T(n-3) Slowly understanding these DP patterns. #DSA #DynamicProgramming #100DaysOfCode #CodingJourney
Day 68 of #LeetCode75 – Problem 649: Dota2 Senate Didn’t solve this one on my own today. I explored the queue-based solution to understand how the banning simulation works. Not my solution, but definitely my learning. #LeetCode #DSA #CodingJourney #100DaysOfCode #CPlusPlus
🔥 Problem of the Day: Merge String Alternately Approach: Language: C++ Difficulty: Easy ✅ Passed all testcases #DSA #LeetCode75
🔥 Problem of the Day: Simplify Path Approach: Language: C++ Difficulty: Easy ✅ Passed all testcases #DSA #LeetCode75
🔥 Problem of the Day: Find The Middle Index In Array Approach: Language: C++ Difficulty: Easy ✅ Passed all testcases #DSA #LeetCode75
“Today’s LeetCode Blind 75: Container With Most Water. Funny how the whole problem collapses once you realize one thing: Move. The. Shorter. Side. Most of y’all fighting O(n²) demons while I’m out here cruising with two pointers.” #Leetcode #leetcode75
🔥 Problem of the Day: Find Pivot Index Approach: Language: C++ Difficulty: Easy ✅ Passed all testcases #DSA #LeetCode75
🔥 Problem of the Day: Find The Highest Altitude Approach: Language: C++ Difficulty: Easy ✅ Passed all testcases #DSA #LeetCode75
🔥 Problem of the Day: Longest Subarray of 1's After Deleting One Element Approach: Language: C++ Difficulty: Medium ✅ Passed all testcases #DSA #LeetCode75
🔥 Problem of the Day: Max Consecutive Ones 3 Approach: Language: C++ Difficulty: Medium ✅ Passed all testcases #DSA #LeetCode75
🔥 Problem of the Day: Decode String Approach: Language: C++ Difficulty: Medium ✅ Passed all testcases #DSA #LeetCode75
Day 66 of #LeetCode75 — Problem 55 (Jump Game). Solved with recursion + memoization: try all jumps from each index and cache results. Time O(n²), Space O(n). Getting better at DP — one problem at a time. #100DaysOfCode #DSA #CPlusPlus #CodingJourney p
🔥 Problem of the Day: Evaluate Reverse Polish Notation Approach: Language: C++ Difficulty: Medium ✅ Passed all testcases #DSA #LeetCode75
Day 65 of #LeetCode75 – Problem 62 (Unique Paths) Solved Unique Paths using Recursion + Memoization (Top-Down DP) Complexity: Time: O(m × n) Space: O(m × n) #Day64 #LeetCode #DSA #DynamicProgramming #CPlusPlus #100DaysOfCode #CodingJourney
Day 75 of #LeetCode75 Solved 739. Daily Temperatures Using a Monotonic Stack Track index of temperatures in a stack. Whenever we find a warmer day → pop & compute the wait time. Time:O(n) Space:O(n) #Day75 #LeetCode #DSA #Stack #MonotonicStack #CPlusPlus #CodingJourney
Day 73 of #LeetCode75 452. Minimum Number of Arrows to Burst Balloons Key idea: Shoot one arrow for all overlapping intervals by minimizing the end range. Time: O(n log n) Space: O(1) #Day73 #LeetCode #DSA #GreedyAlgorithm #Intervals #CPlusPlus #CodingJourney #100DaysOfCode
Day 54 of #LeetCode75 — Problem2336: Smallest Number in Infinite Set This one was tricky, learned it with help and understood the logic behind maintaining: A pointer (cur) to the next smallest number A min-heap to store numbers that were added back #Day54 #LeetCode #DSA #CPP
Day 56 of #LeetCode75 — Problem 208: Implement Trie (Prefix Tree) Today I implemented a Trie — a tree-based data structure used for fast word insertions, searches & prefix lookups. Key concepts: Node structure with 26 child pointers Recursion for insert/search Dictionary
Day 58 of #LeetCode75 Worked on Rotting Oranges (BFS) today. I wrote most of the solution myself (~60%), but needed some guidance to fix the BFS logic and boundary handling. #100DaysOfCode #LeetCode #DSA #codingjourney
Day 52 of #LeetCode75 — Problem 547: Number of Provinces Converted the adjacency matrix into an adjacency list and used DFS to count connected components. Each DFS run = one province. TC: O(n²) SC: O(n) #Day52 #LeetCode #DSA #CPP #CodingJourney
Day 72 of #LeetCode75 – Non-overlapping Intervals (Greedy + Sorting) Sort by end time Count non-overlapping intervals Remove the rest Time:O(nlog n) Space:O(1) #LeetCode #100DaysOfCode #DSA #CPlusPlus #CodingJourney
Day 70 of #LeetCode75 Today’s problem was really tough for me — Evaluate Division. Tried multiple times, got stuck, got frustrated… But didn’t give up. I understood and solved it with the help of YouTube Not my cleanest day, but definitely a learning day. Progress is progress.
Day 60 of LeetCode 75 Solved 1137. N-th Tribonacci Number 🔢 Practiced: • Recurrence → DP • Clean base cases • Space-optimized tabulation (3 variables) Simple problem, but great for building DP intuition. #LeetCode75 #Day60 #DSA #DynamicProgramming #100DaysOfCode #cpp
Day 65 of #LeetCode75 – Problem 62 (Unique Paths) Solved Unique Paths using Recursion + Memoization (Top-Down DP) Complexity: Time: O(m × n) Space: O(m × n) #Day64 #LeetCode #DSA #DynamicProgramming #CPlusPlus #100DaysOfCode #CodingJourney
Day 48 of #LeetCode75 Challenge: Decode String I explored a stack-based solution in C++ to handle nested brackets and repeated strings. Learned how to manage numbers and strings with stacks Great practice for understanding string & stack logic #100DaysOfCode #DSA #CodingJourney
Day 46 of #LeetCode75 Challenge Problem #334 (Increasing Triplet Subsequence) Used a greedy approach with two variables tracking smallest and second-smallest elements to detect an increasing triplet. Time: O(n) Space: O(1) #Day46 #LeetCode #100DaysOfCode #DSA #CPlusPlus #Coding
Day 64 of #LeetCode75 – Problem #1143 (Longest Common Subsequence) Solved using memoized recursion (Top-Down DP) to efficiently compute LCS between two strings. Complexity: Time: O(n × m) Space: O(n × m) #Day64 #LeetCode #DSA #DynamicProgramming #CPlusPlus #CodingJourney
Day 69 of #LeetCode75 – Problem 790 (Domino & Tromino Tiling) Today learned the DP + recurrence relation approach. Interesting formula: T(n) = 2·T(n-1) + T(n-3) Slowly understanding these DP patterns. #DSA #DynamicProgramming #100DaysOfCode #CodingJourney
Day 53 of #LeetCode75 — Problem 215: Kth Largest Element in an Array Used a max-heap (priority queue) to extract the k-th largest efficiently—no sorting needed. T:O(n log n) SC:O(n) #Day53 #LeetCode #DSA #CPP #100DaysOfCode #CodingJourney
Day 74 of #LeetCode75 Learned to Solved 72. Edit Distance Used recursion + memoization to handle: Time: O(n*m) Space: O(n*m)#Day74 #LeetCode #DSA #DynamicProgramming #Recursion #CPlusPlus #CodingJourney #100DaysOfCode
Something went wrong.
Something went wrong.
United States Trends
- 1. Jarry 9,566 posts
- 2. Chelley 4,333 posts
- 3. Skinner 10.4K posts
- 4. #NXXT_28YearFlow N/A
- 5. #FursuitFriday 14.7K posts
- 6. Woody Allen 6,774 posts
- 7. Animal Farm 2,344 posts
- 8. #FanCashDropPromotion 2,447 posts
- 9. Smear the Queer 5,287 posts
- 10. Ripple 53.3K posts
- 11. Steve Bannon 14.7K posts
- 12. #FinlandMegaWord 23.5K posts
- 13. DATEABLES 1,014 posts
- 14. Edmonton 6,416 posts
- 15. Peahens N/A
- 16. Oilers 8,462 posts
- 17. Maikel Garcia 1,433 posts
- 18. Julian Love N/A
- 19. Brady Cook 1,351 posts
- 20. Trunk 4,456 posts