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

DSA grind 14-10-2025 -> Solved POTD -> Solved 2 string problems - 43 (medium) - string rotations (gfg) -> Revised Graph traversals Today's DSA grind wasn't much productive, was feeling low :( Will continue the grind for Dev part. #leetcode #dsa #100daysofcode


🚀 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 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 60/101 LeetCode #2273 Find Resultant Array After Removing Anagrams ✅ 🔹 Traverse words & remove consecutive anagrams. 🔹 Check using frequency count or sorting. ✅ Time: O(n * m) ✅ Space: O(n) #LeetCode #DSA #CPlusPlus #100DaysOfCode #CodingJourney



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


🇮🇳🔹 LeetCode Daily Challenge 🧩 Problem: Find Resultant Array After Removing Anagrams 📘 LC No.: 2273 💡 Approach: 🌀 Reverse Stack Sweep 🔥 Day 672 Streak #LeetCode #Java #ProblemSolving #DailyChallenge #TechStudent #CodingJourney #BuildInPublic #DSAWithJava #DSA #100DaysOfCode

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 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 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

Day 22 : Valid Palindrome II 💫 Approach: Two pointers + one delete chance 🔁 Check from both ends, skip wisely, stay balanced ⚖️ A perfect reminder one mistake doesn’t break the whole logic 😉 #LeetCode #CPP #CodingLife #Developer

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 of #100DaysOfCode Solved: Print All Nodes at Distance K in a Binary Tree and LeetCode Daily 3186 🌳 💬 Focused on tree traversal and distance-based problems today. The daily problem was a good mix of logic and implementation #LeetCode #DSA #LearnInPublic


📌 Day 25 Progress 📚 Stack topic studied & LC #84 (Hard) solved 💻 Revised Strings — LC #1781, #151, #68 (super tricky) + HackerRank Sherlock and Anagrams 📘 POTD #2273 ✅(2-3 methods) 🎯 Step 1, Lec 1 of #TUFWinterArc done! ✅ @takeUforward_ #100DaysOfCode #LeetCode #DSA

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

Day 20/101 ✅ Solved 5 problems today — 2 Easy and 3 Medium. Those 3 Mediums didn’t just test my logic… they stole my soul and half my sanity. Then came the Time Limit Exceeded and Wrong Answer pop-ups — my new emotional support messages. #DSA #LeetCode #100DaysOfCode


![Rajectedguy's tweet image. Done with LeetCode POTD and GFG POTD .
[14-10-2025]
#LeetCode #GFG #POTD #DSA #Coding](https://pbs.twimg.com/media/G3NSNVzXAAAxTyu.jpg)
![Rajectedguy's tweet image. Done with LeetCode POTD and GFG POTD .
[14-10-2025]
#LeetCode #GFG #POTD #DSA #Coding](https://pbs.twimg.com/media/G3NSZEfW4AEdS3c.jpg)
DSA grind 14-10-2025 -> Solved POTD -> Solved 2 string problems - 43 (medium) - string rotations (gfg) -> Revised Graph traversals Today's DSA grind wasn't much productive, was feeling low :( Will continue the grind for Dev part. #leetcode #dsa #100daysofcode


🌟Day 286 👨💻. Solve @geeksforgeeks || @LeetCode POTD Cpp⚡ Question LC. Adjacent Increasing Subarrays Detection I 3349 Easy😎 ✅. Question GFG. Sum of Nodes in BST Range Medium ✅. #geeksforgeeks #leetcode #DSA #POTD @LeetCode @geeksforgeeks #CPP25 #CodingChallenge



Adjacent Increasing Subarrays Detection I: Checks for two contiguous, length-k increasing subarrays in a list. Uses a single pass to track subarray lengths, comparing and resetting as needed. O(n) time, O(n) space — efficient and strai #LeetCode #100DaysOfCode

LeetCode Today's Daily Challenge 🔎 Detect adjacent increasing subarrays in O(n)! 📈 Builds lengths of all increasing runs, instantly returns when one can split into two subarrays of size k or when two adjacent runs meet the k threshold. #LeetCode #100DaysOfCode

📊 Adjacent Increasing Subarrays Detection I: Checks for consecutive ascending sequences using a single pass, tracking lengths to identify overlapping subarrays of size k. ⏱️ O(n) time, O(n) space—efficient and straightforward! #LeetCode #100DaysOfCode

Adjacent Increasing Subarrays Detection I: Checks for consecutive increasing segments in an array. Uses a single pass to track subarray lengths and verifies if two adjacent subarrays meet length criteria. Time: O(n), Space: O(n). Simpl #LeetCode #100DaysOfCode

🚀 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 17/100 ✅ LeetCode POTD 3349. Adjacent Increasing Subarrays Detection I Easy? Maybe on paper 😭 Took me a while to catch that hidden edge case 💀 Streak: 🔥 75 days strong! #LeetCode #100DaysOfCode #DevLife

Day 42: ✔️2 leetcode problems ✔️Anki touch based with React Interview questions ✔️Applied to a gig ✔️Went through Dashboard app loading states and authorization #100DaysOfCode #huntober #LeetCode #REACT
🚀 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 25/100 of #100DaysOfCode was about HARD Graph Problems 1. Minimum Cost to Reach Destination in Time - 38m 16s 2. Maximum Cost of Trip With K Highways - 47m 16s #DSA #LeetCode #ProblemSolving #Algorithms


How can two lines hold the most water? 💧 Solve LeetCode 11 – Container With Most Water in C++ using the elegant two-pointer technique — O(n) time, clean logic, visual explanation. youtube.com/watch?v=gg406d… #LeetCode #cpp #DSA #TwoPointers #Algorithms #CodingInterview #LANAcademy
youtube.com
YouTube
Container With Most Water | LeetCode 11 (C++ Solution)
🚀 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_86 Day 86/90 ✅Done one question today - Rotate List. #LeetCode #BuildInPublic #DevJourney #90DaysOfCode


🗓 Day 60/101 LeetCode #2273 Find Resultant Array After Removing Anagrams ✅ 🔹 Traverse words & remove consecutive anagrams. 🔹 Check using frequency count or sorting. ✅ Time: O(n * m) ✅ Space: O(n) #LeetCode #DSA #CPlusPlus #100DaysOfCode #CodingJourney



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


DSA grind 14-10-2025 -> Solved POTD -> Solved 2 string problems - 43 (medium) - string rotations (gfg) -> Revised Graph traversals Today's DSA grind wasn't much productive, was feeling low :( Will continue the grind for Dev part. #leetcode #dsa #100daysofcode


🇮🇳🔹 LeetCode Daily Challenge 🧩 Problem: Find Resultant Array After Removing Anagrams 📘 LC No.: 2273 💡 Approach: 🌀 Reverse Stack Sweep 🔥 Day 672 Streak #LeetCode #Java #ProblemSolving #DailyChallenge #TechStudent #CodingJourney #BuildInPublic #DSAWithJava #DSA #100DaysOfCode

Hit 100 consecutive days of coding. Shoutout to @takeUforward_ and @striver_79 , your DSA sheet and guidance have been my backbone. Still learning, still grinding. still a long way to go #100DayStreak #CodingJourney #LeetCode #DSA

📌 Day 25 Progress 📚 Stack topic studied & LC #84 (Hard) solved 💻 Revised Strings — LC #1781, #151, #68 (super tricky) + HackerRank Sherlock and Anagrams 📘 POTD #2273 ✅(2-3 methods) 🎯 Step 1, Lec 1 of #TUFWinterArc done! ✅ @takeUforward_ #100DaysOfCode #LeetCode #DSA

📌 Day 42 of #100DaysOfCode Solved: Print All Nodes at Distance K in a Binary Tree and LeetCode Daily 3186 🌳 💬 Focused on tree traversal and distance-based problems today. The daily problem was a good mix of logic and implementation #LeetCode #DSA #LearnInPublic


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

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


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 43 of #100DaysOfCode Solved: Minimum Time to Burn a Binary Tree from a Node (GFG), LeetCode Daily 3539, and LeetCode 222 – Count Complete Tree Nodes 🔥🌳 💬 Another tree-heavy day! Worked on BFS + recursion-based problems #LeetCode #DSA #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 20/101 ✅ Solved 5 problems today — 2 Easy and 3 Medium. Those 3 Mediums didn’t just test my logic… they stole my soul and half my sanity. Then came the Time Limit Exceeded and Wrong Answer pop-ups — my new emotional support messages. #DSA #LeetCode #100DaysOfCode


Something went wrong.
Something went wrong.
United States Trends
- 1. Bears 89.7K posts
- 2. Jake Moody 13.8K posts
- 3. Snell 24.7K posts
- 4. Bills 142K posts
- 5. Caleb 49.1K posts
- 6. Falcons 51.6K posts
- 7. Happy Birthday Charlie Kirk 5,509 posts
- 8. phil 179K posts
- 9. Jayden 23K posts
- 10. Josh Allen 26.8K posts
- 11. Joji 31K posts
- 12. #BearDown 2,394 posts
- 13. Swift 290K posts
- 14. Ben Johnson 4,453 posts
- 15. #Worlds2025 17.9K posts
- 16. Turang 4,359 posts
- 17. #Dodgers 15.4K posts
- 18. Roki 6,061 posts
- 19. Troy Aikman 6,614 posts
- 20. #BeckyEntertainment 108K posts