#100daysofleetcode zoekresultaten
🧩 Day 80 of my #100DaysOfLeetCode Challenge! #LeetCode #100DaysOfCode #Day80 #DSA #CodingJourney #ProblemSolving #CodeNewbie #SoftwareEngineer #DevelopersJourney #Cplusplus #LearningInPublic #TechCommunity
Day 36 of #100DaysOfLeetcode #100daysofcodechallenge
مش بـ post بقالي شوية بس الـ challenge لا تزال مستمرة. Day 24 of #100DaysOfLeetcode #100daysofcodechallenge
Day 18 of #100DaysOfLeetcode #100daysofcodechallenge
Day 97 of #100DaysOfLeetCode Problems: - Unique Length-3 Palindromic Subsequences - Largest Substring Between Two Equal Characters #100DaysOfCode
Day 99 of #100DaysOfLeetCode Problems: - Intersection of Two Arrays - First Unique Character in a String - Number of Zero-Filled Subarrays #100DaysOfCode
💼 LinkedIn Post – Day 92 of #100DaysOfLeetCode Challenge 🚀 Day 92 of #100DaysOfLeetCode Challenge #CodingChallenge #TechTwitter #Programmers #ProblemSolving #MathematicsInCode #CodeNewbie #DevCommunity
Day 96 of #100DaysOfLeetCode Problems: - Minimum Number of Swaps to Make the String Balanced #100DaysOfCode
One of my New Year’s resolutions was to improve my LeetCode skills Starting now, I’ll be embarking on #100DaysOfLeetCode I’ll be share my journey, challenges, and solutions here
Day 90 of #100DaysOfLeetCode ✅Just solved LeetCode problem No. 417 and 418! Let’s keep pushing!📷#LeetCode #CodingChallenge #ProblemSolving
#Day100 Problem: Squares of a Sorted Array (LeetCode #977) My approach 👇 1️⃣ Square each element 2️⃣ Sort the array using Arrays.sort() ✔️ Works fine with O(n log n) complexity. ⚡ Next goal: Try the two-pointer O(n) approach for optimization. #100DaysOfLeetCode #Java #Coding #DSA
Day 89 of #100DaysOfLeetCode Problems: - Minimum Number of Operations to Make Array Continuous #100DaysOfCode
Day 83 of #100DaysOfLeetCode Problems: - Sequential Digits - Range Sum Query - Immutable - Find All Numbers Disappeared in an Array #100DaysOfCode
Day 94 of #100DaysOfLeetCode Problems: - Grid Game - Path Crossing - Maximum Score After Splitting a String #100DaysOfCode
🔥 Big milestone unlocked-Today I got my 100 Days Badge. Day 67 of #100DaysOfCode 🚀 Today's BST Challenge 🌲⚡ 1️⃣ **Recover BST** – Fix tree when two nodes are swapped 🔄 2️⃣ **Largest BST in a Binary Tree** – Find the biggest subtree that’s a valid BST #100DaysOfLeetCode
🚀 Day 54/100 — #100DaysOfCode ✅ 54-day LeetCode streak 🔥 🏆 Completed 100 Days of LeetCode! #LeetCode #100DaysOfLeetCode #DSA #OpenSource #CodingJourney
Day 57 of #100daysofleetcode"Solved SmallestDivisor and ReverseVowels challenges on LeetCode! Used binary search to find the smallest divisor and two-pointer technique to reverse vowels in a string. #LeetCode #coding #algorithms"
🧠 Day 98 of #100DaysOfLeetcode 🚀 Problem: Next Smaller Element For each element in the array, find the next smaller element to its right. If none exists → -1 #100DaysOfCode #DSA #LeetCode #Coding #ProblemSolving #Programming
🧠 Day 97/100 of #100DaysOfLeetCode 🚀 Problem: Maximum Sum Rectangle in a 2D Matrix Given an N×M matrix, find the rectangle with the maximum possible sum of all elements. #100DaysOfCode #CodeNewbie #Programming #ProblemSolving #Cplusplus #DSA
Day 4 of #100DaysOfLeetCode Problem: 1578. Minimum Time to Make Rope Colorful Idea 💡: Use a greedy approach — when two adjacent balloons have the same color, remove the one with the smaller removal time. ✅ O(n) | Greedy | String #Python #DSA #CodingChallenge #100DaysOfCode
Day 27 | #100DaysOfLeetCode Problem: 242. Valid Anagram Topic: Hashing + Strings Difficulty: 🟢 Easy 💭 Goal: Check if two strings contain the exact same characters in the same frequency (just maybe jumbled up 👀). ✨ Logic: Count → Balance → Verify
💼 LinkedIn Post – Day 92 of #100DaysOfLeetCode Challenge 🚀 Day 92 of #100DaysOfLeetCode Challenge #CodingChallenge #TechTwitter #Programmers #ProblemSolving #MathematicsInCode #CodeNewbie #DevCommunity
Day 91 of 100 Days of Leetcode Challenge - Problem 3354: Make Array Elements Equal to Zero #100DaysOfLeetcode #LeetcodeChallenge #ProblemSolving #CodingLife #TechCareer #AlgorithmDesign #LeetcodeSolutions #CodingCommunity
🧩 Day 80 of my #100DaysOfLeetCode Challenge! #LeetCode #100DaysOfCode #Day80 #DSA #CodingJourney #ProblemSolving #CodeNewbie #SoftwareEngineer #DevelopersJourney #Cplusplus #LearningInPublic #TechCommunity
🧠 Day 79 of #100DaysOfLeetCode Pointer manipulation mastery Edge cases: null lists, duplicates, uneven lengths Space optimization techniques #100DaysOfCode #Day79 #LeetCode #DSA #Coding #ProblemSolving #CodeNewbie #TechLearning #SoftwareEngineering #TUFWinterArc
🧠 Day 78/100 — LeetCode Challenge Problem: 3349. Adjacent Increasing Subarrays Detection I Topic: Arrays | Sliding Window #100DaysOfLeetCode #Day78 #LeetCode #DSA #Coding #CPlusPlus #TechTwitter #ProblemSolving #CodeNewbie
I'm starting 100 days of leetcode starting tomorrow #Dsa #100daysofleetcode
🚀 Day 71/100 — Reverse Linked List II (LeetCode 🔥 Learned: pointer juggling + dummy node simplifies everything. Handles head/tail reversals cleanly! #Day71 #100DaysOfLeetCode #LeetCode #Coding #CPlusPlus #DSA #Algorithms #100DaysOfCode #CodeNewbie #TechTwitter #DevCommunity
Concluding Day 10: ✅ #100DaysOfLeetcode ✅ AWS Lab practice ✅ Watched LLMOps Webinar ✅ Kannada Basics ✅ Guitar Basics
Today, I learnt what is a binary search tree (BST), and I solved 701. Insert into a Binary Search Tree on LeetCode, using Go! You can find out more about what is a binary search tree in the following Wikipedia page 🔗 en.wikipedia.org/wiki/Binary_se… #100DaysOfLeetCode – #Day26 Done!
Today, I solved recursively the challenge 235. Lowest Common Ancestor of a Binary Search Tree on LeetCode, using Go! However I did not solve it efficiently 🙂 I am gonna think of a way to solve it more efficiently. Happy LeetCoding! #100DaysOfLeetCode – #Day25 Done!
🚀 Day 59/100 of #100DaysOfLeetCode 🚀 📌 Problem: 78. Subsets #100DaysOfCode #LeetCode #DSA #Coding #ProblemSolving #Recursion #Backtracking #TechTwitter #CodeNewbie #Developer #LearnInPublic
Yesterday, I solved recursively the challenge 100. Same Tree on Leetcode. Today, I solved the challenge 572. Subtree of Another Tree which is like 100. Same Tree but you have to check equality for each node in the root binary tree. #BinaryTree #100DaysOfLeetCode – #Day24 Done!
🧩 Day 80 of my #100DaysOfLeetCode Challenge! #LeetCode #100DaysOfCode #Day80 #DSA #CodingJourney #ProblemSolving #CodeNewbie #SoftwareEngineer #DevelopersJourney #Cplusplus #LearningInPublic #TechCommunity
🚀 Day 56 of #100DaysOfLeetCode 🚀 Solved LeetCode 3005: Count Elements With Maximum Frequency ✅ 🔹 Learned to optimize from brute-force O(n^2) → O(n) using hashing & frequency counting #LeetCode #DSA #100DaysOfCode #Cplusplus #ProblemSolving
Day 36 of #100DaysOfLeetcode #100daysofcodechallenge
مش بـ post بقالي شوية بس الـ challenge لا تزال مستمرة. Day 24 of #100DaysOfLeetcode #100daysofcodechallenge
Day 90 of #100DaysOfLeetCode ✅Just solved LeetCode problem No. 417 and 418! Let’s keep pushing!📷#LeetCode #CodingChallenge #ProblemSolving
🚀 Day 59/100 of #100DaysOfLeetCode 🚀 📌 Problem: 78. Subsets #100DaysOfCode #LeetCode #DSA #Coding #ProblemSolving #Recursion #Backtracking #TechTwitter #CodeNewbie #Developer #LearnInPublic
Day 97 of #100DaysOfLeetCode Problems: - Unique Length-3 Palindromic Subsequences - Largest Substring Between Two Equal Characters #100DaysOfCode
Day 99 of #100DaysOfLeetCode Problems: - Intersection of Two Arrays - First Unique Character in a String - Number of Zero-Filled Subarrays #100DaysOfCode
🚀 Day 22/100 - #100DaysOfCode Solved 4 medium problems today! 💪 ✅ LRU Cache (Medium) ✅ Flattening a Doubly Linked List (Medium) ✅ Daily Temperatures (Medium) ✅ Find the Duplicate Number (Medium) #100DaysOfLeetCode #LeetCode #Coding #Tech #DSA #CPlusPlus #DataStructures
Day 33 of #100DaysOfDSA Leetcode 2089: Find Target Indices After Sorting Array No fancy tricks—just a sort and a simple loop. Yet it sharpens your understanding of value positioning in arrays. #100DaysOfLeetcode #TechTwitter #DSA #Leetcode #DevCommunity #CodingJourney #DSA
Day 18 of #100DaysOfLeetcode #100daysofcodechallenge
#Day100 Problem: Squares of a Sorted Array (LeetCode #977) My approach 👇 1️⃣ Square each element 2️⃣ Sort the array using Arrays.sort() ✔️ Works fine with O(n log n) complexity. ⚡ Next goal: Try the two-pointer O(n) approach for optimization. #100DaysOfLeetCode #Java #Coding #DSA
Something went wrong.
Something went wrong.
United States Trends
- 1. Good Thursday 26.1K posts
- 2. Happy Friday Eve N/A
- 3. #thursdaymotivation 1,536 posts
- 4. #ThursdayThoughts 1,488 posts
- 5. #thursdayvibes 2,152 posts
- 6. #หลิงออมปฏิทินช่อง3ปี2569 685K posts
- 7. LINGORM CH3 CALENDAR SIGN 680K posts
- 8. Nnamdi Kanu 60.1K posts
- 9. #ProofOfFortification N/A
- 10. FEMA 78.4K posts
- 11. Crockett 59.5K posts
- 12. But Jesus 22.4K posts
- 13. The 2024 91.8K posts
- 14. Knicks 14.2K posts
- 15. Shamet 3,165 posts
- 16. Sam Harris 3,841 posts
- 17. NO CAP 15.1K posts
- 18. GM CT 23.9K posts
- 19. FREE HAT 1,860 posts
- 20. Hire American 5,373 posts