#leetcode 검색 결과
🚀 Progress Update: ✅Completed today’s LeetCode POTD ✅ Frequency of elements ✅ Array leaders Small steps every day — trying to stay consistent 💻 #LeetCode #GFG #CodingJourney #LearnInPublic
100 days streak on LeetCode! 💻🔥 Consistency beats intensity. Every day, one problem closer to mastery. Grateful for the learning, the bugs, and the endless “aha!” moments. 🚀 #100DaysOfCode #LeetCode #CodingJourney #DailyGrind
✅ Day 212: LeetCode Grind 🧩 3289. The Two Sneaky Numbers of Digitville 🔹 Approach: Mathematical / Observation ⚡ Identified the two special numbers by analyzing digit patterns and constraints #100DaysOfCode #LeetCode
I've been on LeetCode's Hot 100, but I keep forgetting after a while. Every time, when I decide to fully conquer it, something else will pop up and interrupt me from a streak.#leetcode #Hot100
365 days. 365 problems. One incredible journey. 🚀 Just earned my year-long streak badge on @LeetCode! To anyone starting their coding journey: consistency beats intensity every single time. Here's to the next 365! 💻✨ #100DaysOfCode #LeetCode
Tried a problem on LeetCode… started confident… then realized I understood NOTHING💀 Wrote recursion like it was a PhD thesis📚 Tried 4 times, debugged, cried, rewrote 😭 Finally solved it… but definitely not optimized 😂 #leetcode #codinglife #DSA #programminghumor
I'm excited to announce that I'm finally able to design Twitter. 🙌🏻✨ #Day113 of grinding until I land a job! 🚀 #LeetCode #DSA #100DaysOfCode #striversheet
Day 18 of #100DaysOfCode 💻#TUFwinterArc Wrapped up the month strong! 🏅 Earned the LeetCode DCC October 2025 Badge 🎯 — consistency really pays off! Solved: • Remove Nth Node From End of List • String Compression⚡ #LeetCode #floai #CodingJourney #BuildInPublic
Day 38: Minimum Size Subarray Sum Approach: Sliding Window ⏩ Expand → Shrink → Track the smallest window Keeping it tight and optimal in O(n) ⌛ GitHub - l1nq.com/WqZB5 #LeetCode #CPP #CodingLife #Developer #ProblemSolving
Solved LeetCode #53 – Maximum Subarray • O(n³): Triple loop → Time Limit Exceeded • O(n²): Optimized sum reuse → Still slow • O(n): Kadane’s Algorithm → Accepted Key idea: If the current subarray sum becomes negative → start fresh! #LeetCode #Java #DSA #CodingJourney
leetcode potd done ✅ Day 25 #100DaysOfCode it was straightforward as i have intuition on difference arrays , (first tried :p) . Also was 1272 on cf solved A-E on last div4 (got to 1314) but today dropped to 1303 will bounce back again 💪 #LeetCode #DSA
Day 14 & 15 Dsa : solved 2 questions 1 . Plus one ✅ 2. Remove duplicate elements ✅ Dev : working on the backend of my project #dsa #leetcode #learninpublic
✅Solved 3 LeetCode problems today (following Striver's A2Z DSA Course): -> Delete Nodes From Linked List Present in Array -> Design Browser History -> Length of Last Word #Day71ofCoding #LeetCode #DSA #CodingJourney #TUFWinterArc @takeUforward_ @striver_79
🚀 Check out the full C++ code & explanation on my GitHub: 🔗github.com/Sharmavicky/Ds… 💬 Which approach do you prefer — sorting, map, or set? #100DaysOfCode #DSA #LeetCode #CodingJourney #Cplusplus
I've been on LeetCode's Hot 100, but I keep forgetting after a while. Every time, when I decide to fully conquer it, something else will pop up and interrupt me from a streak.#leetcode #Hot100
🧩 LeetCode #127 — Word Ladder A puzzle disguised as a graph problem. Transform one word into another, 1 letter at a time. Shortest path? That’s BFS in action. ⚙️ 💡 Think graphs even when you see strings. Every letter change = an edge. Every valid word = a node. #LeetCode
Day 22 of the DSA journey! 🚀 Just tackled "Merge Two Sorted Lists" on LeetCode and scored a 0ms runtime, beating 100% of submissions. It’s incredibly satisfying to see the daily practice pay off with clean, efficient code. #100DaysOfCode #DSA #LeetCode #CodingJourney #LinkedList
Kitne mahino ke baad DSA karne betha tha, and leetcode is not opening. -I think its God sign 😶 #leetcode #dsa
Day 74 of 100 Days of Code: LeetCode: Candy #LearnInPublic #100DaysOfCode #LeetCode #DSA #LeetCodeDaily
Day 2 of #100DaysOfCode Solved LeetCode 26: Remove Duplicates from Sorted Array Used the two-pointer technique to efficiently track unique elements and achieve O(n) time complexity ⚡ Another small win toward mastering DSA 🔥 #LeetCode #CodingJourney #Cplusplus #ProblemSolving
Day 7 PODT - 1 Nov 2025 3289. The Two Sneaky Numbers of Digitville “Just Work Hard” <3 Endsems are near, so I might slow down on posts for a bit 😅 #LeetCode @Hiteshdotcom @piyushgarg_dev
🌅 Day 15 of #100DaysOfCode Another productive day! Solved LC 3217 – Delete Nodes From Linked List Present in Array ✅ 🧩 Focused on efficient linked list traversal ⚙️ Used hash set for quick lookups 💡 Simple yet elegant logic #LeetCode #Coding #BuildInPublic #DSA
Progress has never felt so good, especially when you think of the optimal solution instantly. Doing ATLEAST 1 Leetcode problem everyday since the start of october. #DevJourney #Leetcode #ProblemSolving #DSA
🔗 LeetCode Daily: Delete Nodes From Linked List ✅ Boolean array for O(1) lookup! Mark nums values, filter list. Dummy node handles edge cases. ⚡ O(n+m) time with O(1) checks 🎯 Space-time tradeoff wins 💡 Dummy node pattern FTW #LeetCode #CPlusPlus #LinkedList #100DaysOfCode
Day 3: Locked in, cooking something new 🔥 I don’t know Android dev (I’m a web guy), but I’ve got a product idea. Not restricted to any domain I’m a dev, and I build to help humanity. Also solved a #LeetCode today Let’s see what I cook with Android Studio 👀 #Development
🧩 Day 94 of #100DaysOfCode Problem: Delete Nodes From Linked List Present in Array Used a hash set for O(1) lookups Brute: O(n*m) → Optimal: O(n+m) #LeetCode #DSA #LinkedList #Cplusplus #Coding #ProblemSolving #CodeNewbie #TechLearning #Hashing #LearnInPublic
💻 Day 72 of #LeetCode Daily Challenge! Solved #POTD 3217 “Delete Nodes From Linked List Present in Array” 🔗 Used a hash set to skip unwanted nodes efficiently ⚙️ ⏱️ Time: O(n) 📦 Space: O(n) Bit by bit, staying consistent each day 💪 #100DaysOfCode #CPP #DSA #CodingJourney
🚀 Progress Update: ✅Completed today’s LeetCode POTD ✅ Frequency of elements ✅ Array leaders Small steps every day — trying to stay consistent 💻 #LeetCode #GFG #CodingJourney #LearnInPublic
✅ Day 212: LeetCode Grind 🧩 3289. The Two Sneaky Numbers of Digitville 🔹 Approach: Mathematical / Observation ⚡ Identified the two special numbers by analyzing digit patterns and constraints #100DaysOfCode #LeetCode
100 days streak on LeetCode! 💻🔥 Consistency beats intensity. Every day, one problem closer to mastery. Grateful for the learning, the bugs, and the endless “aha!” moments. 🚀 #100DaysOfCode #LeetCode #CodingJourney #DailyGrind
Tried a problem on LeetCode… started confident… then realized I understood NOTHING💀 Wrote recursion like it was a PhD thesis📚 Tried 4 times, debugged, cried, rewrote 😭 Finally solved it… but definitely not optimized 😂 #leetcode #codinglife #DSA #programminghumor
Day 73 of 100 Days of Code: LeetCode: Valid Palindrome #LearnInPublic #100DaysOfCode #LeetCode #DSA #LeetCodeDaily
Day - 75 of #100DaysOfCode solved: 114. Flatten Binary Tree to Linked List 129. Sum Root to Leaf Numbers 173. Binary Search Tree Iterator on #leetcode
Day 14 & 15 Dsa : solved 2 questions 1 . Plus one ✅ 2. Remove duplicate elements ✅ Dev : working on the backend of my project #dsa #leetcode #learninpublic
I'm excited to announce that I'm finally able to design Twitter. 🙌🏻✨ #Day113 of grinding until I land a job! 🚀 #LeetCode #DSA #100DaysOfCode #striversheet
Day 18 of #100DaysOfCode 💻#TUFwinterArc Wrapped up the month strong! 🏅 Earned the LeetCode DCC October 2025 Badge 🎯 — consistency really pays off! Solved: • Remove Nth Node From End of List • String Compression⚡ #LeetCode #floai #CodingJourney #BuildInPublic
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 61/100 #100DaysOfCode ✅ Word Search (Backtracking & DFS) ✅ Highest Occurring Element (Hashing) ✅ Two Sneaky Numbers of Digitville (Bit Manipulation) #LeetCode #BuildInPublic #DevCommunity #LearnInPublic #TUFWinterArc #Java
Day 31 #75DaysDSAChallenge 🏠🔄 Broke LeetCode 213: House Robber II (Circle? Split: rob 0→n-2 or 1→n-1, max of both — O(1) circular logic? Cracked 😎 Ever "split to win"? #DSA #LeetCode #CodingChallenge #DynamicProgramming #ProblemSolving #LearningInPublic #CONNECT
365 days. 365 problems. One incredible journey. 🚀 Just earned my year-long streak badge on @LeetCode! To anyone starting their coding journey: consistency beats intensity every single time. Here's to the next 365! 💻✨ #100DaysOfCode #LeetCode
Something went wrong.
Something went wrong.
United States Trends
- 1. vmin 30.4K posts
- 2. Good Saturday 22K posts
- 3. #SaturdayVibes 3,341 posts
- 4. Nigeria 479K posts
- 5. Big Noon Kickoff N/A
- 6. Social Security 47.1K posts
- 7. #River 5,470 posts
- 8. New Month 308K posts
- 9. seokjin 247K posts
- 10. #AllSaintsDay 1,336 posts
- 11. Chovy 13.6K posts
- 12. #saturdaymorning 1,543 posts
- 13. #LoVeMeAgain 37.6K posts
- 14. Merry Christmas 12.1K posts
- 15. VOCAL KING TAEHYUNG 40.2K posts
- 16. IT'S GAMEDAY 1,752 posts
- 17. GenG 22.4K posts
- 18. Championship Saturday N/A
- 19. Spring Day 60.4K posts
- 20. MEET DAY 11.1K posts