#leetcode ผลการค้นหา
Hit the 50-day streak on LeetCode 🔥 Just showing up every day — that’s the real flex. #LeetCode #CodingJourney

🎉⚡ Completed 50 Questions on @LeetCode And I was hoping that they will give me a badge 📛 but then found they will give the badge after the 50 different submission date ...... 💻 No problem... Get up to grind #DSA #LeetCode #leetcodedaily

Day 26: Two Sum II Two pointers chasing one target 🎯 Clean logic, clear direction, constant pace #LeetCode #CPP #CodingLife #Developer

It's Confirmed! Internet is full of lies. Earlier that 4cr package Now this shit guy who solved entire LeetCode in just 2 months, and his audacity to flex it as an achievement on LinkedIn and guys are commenting "Congratulations", "Inspiring". #LeetCode




#Day81 Update: - NextJs project- Added some feature, continuing on this - LeetCode: Two Coding Problems from Blind 75 #100daysofcode #LeetCode #DSA #WebDevelopment

I just had a talk with this guy, i don't know whether to pity or feel sad... I told him that I believe you.. Agar in next 1 month, if he doesn't become guardian, I'll kill myself 😭 But man is getting a lot of negative hate :( #leetcode #dsa


📌 Day 29 Progress 🌳 Binary Tree — basics + LC #104, #543 ✅ 📚 Queue — LC #239, GFG: First Non-repeating 🔄 💻 Revise — LC #136, #48, #134, #53 🧠 🎯 Step-1, Lec-5 #TUFWinterArc ✅ ⚠️ POTD skipped (too tough today) @takeUforward_ #100DaysOfCode #LeetCode #DSA #Coding

Day 13 POTD : 3003 Bruteforce got TLE. Then watched a yt video and solved with optimal approach.😔 #DSA #LEETCODE #100DaysOfCode #100DayChallenge #Arrays

Day 90 ⚡ Built my own rainwater calculator today ☔💧 Two pointers, smart logic, and some wet fun with arrays 😄 #100DaysOfCode #LeetCode

Day 5 ✅ #TUFWinterArc Completed Lec 2: Medium Solved 151 problems in total 🚀 Focus: 2Sum, Kadane’s, Majority Element & Subarray patterns. #LeetCode #DSA #100DaysOfCode #CodingJourney #ProblemSolving

148 Days on the Daily Coding Challenge streak! 🤯 That's the real win. From a slow start to landing a 9ms runtime solution today—this is what continuous effort looks like. The goal isn't just to solve it, it's to get 1% better every day. #100DaysOfCode #LeetCode

🚀 Day 67 of #100DaysOfDSA 🚀 LeetCode 1283 — Find the Smallest Divisor Given a Threshold 🔹 Problem: Find the smallest integer divisor such that the sum of all ⌈num / divisor⌉ ≤ threshold. 🔹 Approach: Binary Search on Answer #LeetCode #DSA #BinarySearch #Python

#DAY_90 Day 90/90 ✅Finally completed. (i) Unique Binary Search Tree. (ii) Unique Binary Search Tree II. #LeetCode #BuildInPublic #DevJourney #90DaysOfCode


🧩 Leet Code 33- Search in Rotated Sorted Array Practice Array, Binary Search Time Complexity: O(log n) #LeetCode #Java #Coding #100DaysOfCode #Prefix #HashMap #arrayoperations


Signing off Day 8 of #100DaysOfCode Problems Solved : - -> 1903. Largest Odd Number in StringOperations -> 151. Reverse Words in a String -> 1021. Remove Outermost Parentheses -> 14. Longest Common Prefix #LeetCode #DSA #Peace




Day 66 🧩 Solved Rat in a Maze today — the tricky part was tracking visited cells 🐀 Other than that, it was pretty easy! #100DaysOfCode #DSA #LeetCode #CodingJourney #ProblemSolving

#POTD Maximum Number of Distinct Elements After Operations via #leetcode is available on potd.in #problemoftheday #programmer #geeksforgeeks #geeks #datastructures #algorithms #100DaysOfCode #DEVCommunity
Day 33 of #100DaysOfDSA Moved deeper into Greedy today 😎 From @striver_79 ✅ Studied “Jump Game II” Understanding how to minimize jumps while maximizing reach, the true greedy mindset 😌 #Day33 #LeetCode #Python #takeUforward

Day 32 of #100DaysOfDSA From @striver_79: ✅ Learnt “Jump Game I” ✅ Solved the LeetCode “Jump Game” problem Getting into greedy problems now, these ones really test how well you can think ahead 😌 #Day32 #LeetCode #Python #takeUforward


Day 77 of #LCdaily Solved Asteroid Collision — finally got it working after multiple failed logic attempts Used stack to simulate collisions between moving asteroids. TC: O(n), SC: O(n) Took too long today, unproductive overall #LeetCode #DSA #100DaysOfCode #Striver

DSA Grind: #Day10 and #Day11 ✅ Topic: Strings 🧠 Status: Understand the theory part and solve 5 questions . Feeling good about starting this challenge. Consistency is the key. #Leetcode #java @kunalstwt #Coding #DSA #CodingJourney
Day 26: Two Sum II Two pointers chasing one target 🎯 Clean logic, clear direction, constant pace #LeetCode #CPP #CodingLife #Developer

🎯 17/10/2025 - Friday ✅️ Solved few SQL Problems on Leetcode ✅️ Started learning about Firebase #sqlbasics #LeetCode #CodingLife
🧩 LeetCode Daily: Max Partitions After Operations Memoized DFS + bitmask! Track distinct chars, try changing one letter optimally. ⚡ State: (pos, canChange, mask) 🎯 26-bit mask for alphabet 💡 One strategic change = max partitions #LeetCode #CPlusPlus #DFS #100DaysOfCode

Spent almost 4 hours on New 21 Game — kept getting TLE Went through countless explanations, but none helped until @neetcode1's solution a bit different but tied perfectly with the recursive intuition. Finally understood how the sliding window + DP approach. #LeetCode #DSA

Day 24 – #100DaysOfCode💻 Solved Minimum Depth of Binary Tree on LeetCode 🔹Used recursion to find the shortest path to a leaf node 🔹Focused on handling edge cases for single child nodes 🔹Improved understanding of tree depth calculations #Zigbee #LeetCode #PythonLearning

💻 #Day9 of my DSA grind Solved “Successful Pairs of Spells and Potions” (LeetCode 2300) ⚔️ Used Binary Search + sorting to find how many potion strengths make each spell successful in O((n + m) log m) 💥 Then count m - index ✅ #LeetCode #100DaysOfCode #DSA #BinarySearch

⚡ Day 17 of #100DaysOfCode Solved: Subarray Sum Equals K 📊 Used a prefix sum + hashmap approach to count subarrays summing to K in O(n). 🎯 Lesson: Prefix sums make “range-based” problems easy and elegant. #LeetCode #DSA #HashMap #CodingJourney #100DaysOfCode

Solved LeetCode #437 — Path Sum III 💻 Counted all paths in a Binary Tree that sum up to a target value using recursion & DFS. A great reminder that not all paths start from the root 🌳 #CodingJourney #CodingLife #LeetCode

Day 23 – #100DaysOfCode 💻 Solved Balanced Binary Tree on LeetCode 🔹 Implemented height-based recursion to check balance 🔹 Practiced handling base cases effectively 🔹 Strengthened recursive thinking in tree traversal #Zigbee #LeetCode #PythonLearning

Day 5️⃣3️⃣ of #100DaysOfCode 💻 Solved LeetCode 53: Maximum Subarray 📈 A classic Kadane’s Algorithm problem — simple yet so powerful! ⚡ #LeetCode #Coding #ProblemSolving #DSA #100DaysOfCode

Day 72 of #100DaysOfCode -solve leetcode's 3-4 problems today - tired today alot ,not a productive day #DSA #LeetCode
Day 13 of coding until I get a job! ✅ DSA – 1 problem solved ✅ Web Dev –Finally fixed bugs in login forms (Auth0 integration) 😁 Keep pushing! 💪 #100DaysOfCode #LeetCode #WebDevelopment #CareerGoals
Hit the 50-day streak on LeetCode 🔥 Just showing up every day — that’s the real flex. #LeetCode #CodingJourney

Day 26: Two Sum II Two pointers chasing one target 🎯 Clean logic, clear direction, constant pace #LeetCode #CPP #CodingLife #Developer

🎉⚡ Completed 50 Questions on @LeetCode And I was hoping that they will give me a badge 📛 but then found they will give the badge after the 50 different submission date ...... 💻 No problem... Get up to grind #DSA #LeetCode #leetcodedaily

I just had a talk with this guy, i don't know whether to pity or feel sad... I told him that I believe you.. Agar in next 1 month, if he doesn't become guardian, I'll kill myself 😭 But man is getting a lot of negative hate :( #leetcode #dsa


It's Confirmed! Internet is full of lies. Earlier that 4cr package Now this shit guy who solved entire LeetCode in just 2 months, and his audacity to flex it as an achievement on LinkedIn and guys are commenting "Congratulations", "Inspiring". #LeetCode




🚀 Day 67 of #100DaysOfDSA 🚀 LeetCode 1283 — Find the Smallest Divisor Given a Threshold 🔹 Problem: Find the smallest integer divisor such that the sum of all ⌈num / divisor⌉ ≤ threshold. 🔹 Approach: Binary Search on Answer #LeetCode #DSA #BinarySearch #Python

Day 90 ⚡ Built my own rainwater calculator today ☔💧 Two pointers, smart logic, and some wet fun with arrays 😄 #100DaysOfCode #LeetCode

#DAY_90 Day 90/90 ✅Finally completed. (i) Unique Binary Search Tree. (ii) Unique Binary Search Tree II. #LeetCode #BuildInPublic #DevJourney #90DaysOfCode


👨🏻💻Day 82/100 ~💻A professional project structure. ~💻78. Subsets #100DaysOfCode #DSA #leetcode #webdev


Day 25 of #100DaysOfCode Completed today’s LeetCode problem — making it 108 consecutive days of daily problem-solving! #LeetCode #CodingJourney #Zigbee #100DaysOfCodeChallenge


148 Days on the Daily Coding Challenge streak! 🤯 That's the real win. From a slow start to landing a 9ms runtime solution today—this is what continuous effort looks like. The goal isn't just to solve it, it's to get 1% better every day. #100DaysOfCode #LeetCode

🚀 Just crushed LeetCode 42 (Trapping Rain Water) using the two-pointer approach in C++! 💻 Big thanks to CoderArmy and the GOAT Rohit Negi bhaiya for the awesome DSA lessons on YouTube! 🙌 #LeetCode #DSA #CodingJourney #CoderArmy #Consistency #Homework

#Day81 Update: - NextJs project- Added some feature, continuing on this - LeetCode: Two Coding Problems from Blind 75 #100daysofcode #LeetCode #DSA #WebDevelopment

Day-9 of my DSA grind ⚙️ Today’s problem — Move all zeros to the end while keeping the non-zero order same. Used a clean two-pointer trick 🧠 — just keep placing non-zero elements forward and zeros automatically slide to the back 😎 #100DaysOfCode #LeetCode #DSA #CodingJourney

Day 5 ✅ #TUFWinterArc Completed Lec 2: Medium Solved 151 problems in total 🚀 Focus: 2Sum, Kadane’s, Majority Element & Subarray patterns. #LeetCode #DSA #100DaysOfCode #CodingJourney #ProblemSolving

📌 Day 29 Progress 🌳 Binary Tree — basics + LC #104, #543 ✅ 📚 Queue — LC #239, GFG: First Non-repeating 🔄 💻 Revise — LC #136, #48, #134, #53 🧠 🎯 Step-1, Lec-5 #TUFWinterArc ✅ ⚠️ POTD skipped (too tough today) @takeUforward_ #100DaysOfCode #LeetCode #DSA #Coding

Day 89 ⚡ Today’s mission: find the missing number that hides in chaos 🔍 Cracked it in O(n) time — no extra space, just pure logic magic 🧠✨ #100DaysOfCode #LeetCode

Something went wrong.
Something went wrong.
United States Trends
- 1. Carson Beck 5,289 posts
- 2. #SmackDown 40.6K posts
- 3. Miami 82.6K posts
- 4. Louisville 13.2K posts
- 5. George Santos 56.6K posts
- 6. Geno 9,026 posts
- 7. Chris Bell 1,423 posts
- 8. Ilja 16.7K posts
- 9. Ohtani 26.5K posts
- 10. #SeizeTheMoment 8,435 posts
- 11. Cal Raleigh 5,291 posts
- 12. #OPLive 1,564 posts
- 13. Grand Slam 7,913 posts
- 14. Sami 24.4K posts
- 15. Springer 9,306 posts
- 16. Raiola 1,654 posts
- 17. #LGRW 2,041 posts
- 18. #ALCS 5,900 posts
- 19. Jeff Brohm N/A
- 20. Big Dumper 2,692 posts