#leetcode résultats de recherche
🚀 LeetCode Daily Challenge: October 14 🚀 3349. Adjacent Increasing Subarrays Detection I Track possible subarray sizes: current subarray size split into two halves, or smaller of previous subarray and current subarray. #LeetCode #DSA #Coding #ProblemSolving #LearnInPublic


DAY 82 ✅ Solved Zigzag Conversion in C++ 💯 1157/1157 test cases passed ⏱ Runtime: 0ms (beats 100%!) 💾 Memory: 14.04MB (beats 52.98%) Feeling like a coding ninja today! ⚡👨💻 #LeetCode #100DaysOfCode #CPP #CodingWin #Algorithm

Day 23 : Merge Strings Alternately Approach: Two pointers → alternate pick → append → done ⚙️ Some problems aren’t tough, just need a clear flow 😌 #LeetCode #CPP #Developer #DevJourney

Do you guys make notes while watching tutorial?? Btw... try to guess what I'm learning!! #DSA #CodingJourney #LeetCode

#DAY_86 Day 86/90 ✅Done one question today - Rotate List. #LeetCode #BuildInPublic #DevJourney #90DaysOfCode

Day 24 of #100DaysOfCode 🔥 Solved 2 LeetCode problems today: 1.Rotate Image 2. Spiral Matrix Took me almost 3.5 hours to figure out the pattern and brute force both, but that’s how growth feels — slow, frustrating, yet powerful #LeetCode #DSA #CodingJourney



Day 27 of #LeetCode75 Problem: 872. Leaf-Similar Trees Approach: Use DFS to store all leaf values of each tree. Compare both vectors at the end. Time:O(n) Space:O(n) #LeetCode #75DaysChallenge #Day27 #DSA #BinaryTree #Recursion #CPlusPlus #CodingJourney #KeepCoding


Began my LeetCode journey this October and honestly, some problems solve themselves faster than expected! Wrapped this one up in just 50 seconds ✅ Not all questions are this straightforward but when they click instantly it feels great. #LeetCode #Java

✅ Day 194: LeetCode Grind 🧩 714. Best Time to Buy and Sell Stock with Transaction Fee 🔹 Approach: Dynamic Programming (Tabulation) ⚡ Used buy/sell states to decide transactions efficiently 🔥 Goal: Maximize profit considering transaction fee #100DaysOfCode #LeetCode

Solving LeetCode isn’t about speed — it’s about patterns. Master the thought process, not the syntax. Focus on: Arrays + Two Pointers Sliding Window Trees Graph Traversals Once you see the pattern → problems start repeating 😉 #LeetCode #DSA #kunika

Day 42&43/100 of Consistency 🔥 #LeetCode #POTD streak goes on! 100-day challenge looking more real every day 📷 🏁

🚀 Day 46 of #100DaysOfCode Solved LeetCode 61 – Rotate List 🔁 Learned to handle linked list rotations efficiently using pointer manipulation & k % n. Runtime: 0ms ⚡️ #LeetCode #Cplusplus #DSA #CodingChallenge #LinkedList @harsh__x07

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


Day 55 of #100DaysOfCode Solved 2 classics today: 1: Intersection of Two Linked Lists 2: Container With Most Water Consistency > Motivation. One step at a time. #DSA #LeetCode #ProblemSolving #CodingJourney

Leetcode POTD 3349 ✅ Code: working Brain: overheated Explanation: actually written 😮💨 Full solution + explanation below 👇 #LeetCode #Coding #POTD



August 2025 ✅ LeetCode DCC wrapped up! Ended the month with a Sudoku Solver — backtracking at its best. 🔢 From daily DSA to late-night debugging, the grind never stops. Daily code, daily growth. 🚀 Consistency always wins. 🚀 #LeetCode #DCC #CodingJourney #WebDev #DSA

Day 23 : Merge Strings Alternately Approach: Two pointers → alternate pick → append → done ⚙️ Some problems aren’t tough, just need a clear flow 😌 #LeetCode #CPP #Developer #DevJourney

day 22, more Greedy problems, my last one on the topic today. studied AWS, polished an old project #100DaysOfCode #DSA #LeetCode


Day 16/100 – #LeetCode100DaysChallenge Problem: First Missing Positive Time: O(n log n) | Space: O(1) | Memory: 56.49 MB (beats 86.89%) Every solved problem strengthens your algorithmic intuition #100DaysOfCode #LeetCode #Java #CodingChallenge #DSA #ProblemSolving #TechJourney

Day 27 of #LeetCode75 Problem: 872. Leaf-Similar Trees Approach: Use DFS to store all leaf values of each tree. Compare both vectors at the end. Time:O(n) Space:O(n) #LeetCode #75DaysChallenge #Day27 #DSA #BinaryTree #Recursion #CPlusPlus #CodingJourney #KeepCoding


🚀 Day 447 of Code 🚀 Solved : ✅ 3349. Adjacent Increasing Subarrays Detection I #Day447 #LeetCode #DSA #ProblemSolving #Arrays #Algorithm #CodingJourney #100DaysOfCode


Continuing the #StriversSheet and solving #LeetCode problems Got the Answer quickly in under 3 mins maybe. Used 2 pointer method


Every problem solved is one step closer to growth and mastery! #StriversSheet #LeetCode Solved the Palindrome. Pretty Basic Solution learned in clg


Starting the #StriversSheet today and grinding #LeetCode! Time to level up my DSA skills 💪🏻 Let the grind begin 🚀


💻 #Day6 of my DSA grind Problem: Valid Triangle Number Approach: Sort + Two Pointer 🧠 Logic: For every largest side c, Move two pointers to find (a,b) such that a + b > c Add (j - i) when valid ✅ ⏱️O(n²) | 💪 Optimized from brute force O(n³) #DSA #LeetCode #100DaysOfCode #CPP

Day 14 #75DaysDSAChallenge 🏔️📷Summited LeetCode 162: Find Peak Element (Binary search: chase the climb, snag the peak) 0 ms | Beats 100% — from slope guess to summit spot-on 📷#DSA #LeetCode #CodingChallenge #ProblemSolving #CONNECT

Day 14 #75DaysDSAChallenge 🏔️⚡ Summited LeetCode 162: Find Peak Element (Binary search: chase the climb, snag the peak) 0 ms | Beats 100% — from slope guess to summit spot-on 😎 Peak fails: The steepest you've skied? #DSA #LeetCode #CodingChallenge #ProblemSolving #connect
#Day98 of grinding until I land a job! 🚀 - Solved these questions today: > Search in a Binary Search Tree > Minimum element in BST > Ceil from BST > Floor in BST #DSA #LeetCode #100DaysOfCode #striversheet




DAY 82 ✅ Solved Zigzag Conversion in C++ 💯 1157/1157 test cases passed ⏱ Runtime: 0ms (beats 100%!) 💾 Memory: 14.04MB (beats 52.98%) Feeling like a coding ninja today! ⚡👨💻 #LeetCode #100DaysOfCode #CPP #CodingWin #Algorithm

🚀 LeetCode Daily Challenge: October 14 🚀 3349. Adjacent Increasing Subarrays Detection I Track possible subarray sizes: current subarray size split into two halves, or smaller of previous subarray and current subarray. #LeetCode #DSA #Coding #ProblemSolving #LearnInPublic


Day 23 : Merge Strings Alternately Approach: Two pointers → alternate pick → append → done ⚙️ Some problems aren’t tough, just need a clear flow 😌 #LeetCode #CPP #Developer #DevJourney

Day 20 — Reverse String 🔁 Two pointers, one elegant swap ✨ Simple logic, satisfying result 😌 Sometimes all you need… is a little reverse in life too 😅 #LeetCode #CPP #CodingLife #Developer

Day 85 ⚡ Taught my code to play Sudoku like a genius 🤓 One cell at a time, backtracking to perfection ✅ #100DaysOfCode #LeetCode

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


Day 27 of #LeetCode75 Problem: 872. Leaf-Similar Trees Approach: Use DFS to store all leaf values of each tree. Compare both vectors at the end. Time:O(n) Space:O(n) #LeetCode #75DaysChallenge #Day27 #DSA #BinaryTree #Recursion #CPlusPlus #CodingJourney #KeepCoding



Day 24 of #100DaysOfCode 🔥 Solved 2 LeetCode problems today: 1.Rotate Image 2. Spiral Matrix Took me almost 3.5 hours to figure out the pattern and brute force both, but that’s how growth feels — slow, frustrating, yet powerful #LeetCode #DSA #CodingJourney



I learned Merge Sort and solved following problems 1.Merge sorted array. 2.find the kth smallest element using merge sort. 3.sort the array using merge sort. Thanks to @kunalstwt and @WeMakeDevs #DSAwithKunal #recursion #LeetCode #problemsolving #datastructures



Day 26 of LeetCode 75 Problem: 1372. Longest ZigZag Path in a Binary Tree Approach: Used recursion with parameters tracking direction (left/right), path length, and maximum result. Time:O(n) Space:O(h),where h is tree height. #LeetCode #75DaysChallenge #Day26 #DSA #BinaryTree


#DAY_86 Day 86/90 ✅Done one question today - Rotate List. #LeetCode #BuildInPublic #DevJourney #90DaysOfCode

🚀 Day 46 of #100DaysOfCode Solved LeetCode 61 – Rotate List 🔁 Learned to handle linked list rotations efficiently using pointer manipulation & k % n. Runtime: 0ms ⚡️ #LeetCode #Cplusplus #DSA #CodingChallenge #LinkedList @harsh__x07

Something went wrong.
Something went wrong.
United States Trends
- 1. D’Angelo 305K posts
- 2. Erika Kirk 42.3K posts
- 3. Charlie 573K posts
- 4. Young Republicans 16.8K posts
- 5. #PortfolioDay 17.9K posts
- 6. Pentagon 111K posts
- 7. Politico 180K posts
- 8. Presidential Medal of Freedom 70.2K posts
- 9. Brown Sugar 21.7K posts
- 10. Big 12 14K posts
- 11. Angie Stone 35.8K posts
- 12. Drew Struzan 30.7K posts
- 13. David Bell N/A
- 14. Scream 5 N/A
- 15. Venables 3,918 posts
- 16. Black Messiah 11.5K posts
- 17. Milei 287K posts
- 18. Burl Ives N/A
- 19. George Strait 4,275 posts
- 20. NHRA N/A