Search results for #LeetCode75
Binary Tree - DFS Count Good Nodes in Binary Tree #LeetCode75 36/75 #Python #DSA #100DaysOfCode #LeetCode
Binary Tree - DFS Count Good Nodes in Binary Tree #LeetCode75 35/75 #Python #DSA #100DaysOfCode #LeetCode
Binary Tree - DFS Leaf-Similar Trees #LeetCode75 34/75 #Python #DSA #100DaysOfCode #LeetCode
Binary Tree - DFS Maximum Depth of Binary Tree #LeetCode75 33/75 #Python #DSA #100DaysOfCode #LeetCode
Linked List Question. Reverse Linked List #LeetCode75 32/75 #Python #DSA #100DaysOfCode #LeetCode
❓ Problem 2: Sort Colors (0, 1, 2) 📘 Learned: Dutch National Flag Algorithm ✅ Solved on: LeetCode #75 – Sort Colors leetcode.com/problems/sort-… #DSA #100DaysOfCode #Coding #LeetCode #HashMap #TwoPointers #DutchNationalFlag #LeetCode1 #LeetCode75
Linked List Question. Reverse Linked List #LeetCode75 31/75 #Python #DSA #100DaysOfCode #LeetCode
✅ Day 3 complete! Tomorrow → more practice + tackling BFS/DFS head-on. 🌊 Stay tuned 🚀 #DSA #LeetCode75 #InterviewPrep
1207. Unique number of Occurrences. Leetcode problem solution using Golang. #Leetcode75 #Golang
🧠 Day 17 – LeetCode 11: Container With Most Water Input: [1,8,6,2,5,4,8,3,7] → Output: 49 #LeetCode75 #100DaysOfCode #StriverSheet #JavaScript #CleanCode #WebDev #FrontendDev #DevCommunity #BuildInPublic
🧠 Day 16 – LeetCode 1051: Height Checker Input: [1,1,4,2,1,3] → Output: 3 Compare original vs sorted: [1,1,4,2,1,3] → [1,1,1,2,3,4] #LeetCode75 #100DaysOfCode #StriverSheet #JavaScript #CleanCode #WebDev #FrontendDev #DevCommunity #BuildInPublic
Solved "Greatest Common Divisor of Strings" from #LeetCode75 using string + math logic. 2/30 #Python #DSA #100DaysOfCode #LeetCode
🧠 Day 15 – LeetCode 136: Single Number Input: [2,2,1] → Output: 1 Used XOR 🧠 Duplicates cancel out: a ^ a = 0, a ^ 0 = a One pass, no extra space. O(n) time, O(1) space. ⚡️ Bitwise clean & magic! #LeetCode75 #100DaysOfCode #StriverSheet #JavaScript #CleanCode #DevJourney
Daily coding challenge July 2k25 @LeetCode badge 📛 #LeetCode #LeetCode75 #codinglife #CodingJourney #CodingChallenge #DCC2025
🧠 Day 1 – LeetCode 169: Majority Element Input: [2,2,1,1,1,2,2] → Output: 2 Used Boyer-Moore Voting 🗳️ Track count + candidate. Cancel out non-majority. O(n) time, O(1) space. 🔥 Clean & optimal. #LeetCode75 #100DaysOfCode #StriverSheet #JavaScript #CleanCode #DevJourney
Day 21 of #100DaysOfCode Concepts revised -> 1. Prims Algo 2. Kruskul Algo 3. Topological Sort 4. Kosaraju Algo 5. Belmon ford Algo 6. Dijktra Algo Leetcode solved -> 1. Spiral Matrix 2. Rotate Image #Coding #leetcode75 #Hustle
🧠 Day 14 – LeetCode 66: Plus One Input: [9,9,9] → Output: [1,0,0,0] Loop from end, add 1 → if <10 return, else set to 0. If all 9s, return [1, ...digits]. One-pass, clean logic. #LeetCode75 #100DaysOfCode #StriverSheet #JavaScript #CleanCode #DevJourney
🧠 Day 13 – LeetCode 35: Search Insert Position Binary Search strikes again ⚔️ O(log n) — Find exact match or perfect insert spot. Edge cases handled cleanly. #LeetCode75 #100DaysOfCode #StriverSheet #JavaScript #DSA #DevJourney #CleanCode
🧠 Day 12 – LeetCode 75: Sort Colors Used Dutch National Flag 🏳️ algo (3 pointers: low, mid, high). 0ms ⏱️ | Beats 100% 🔥 In-place, one-pass, no sorting — just clean logic. JS all the way 💻 #LeetCode75 #100DaysOfCode #StriverSheet #JavaScript #DSA #DevJourney #CleanCode