Search results for #neetcode150
Day 60 of the #NeetCode150 Challenge! 🔸Started a new section this weekend: Advanced Graphs! 1. Network Delay Time DevConnect - devconnect-app-ucu2.onrender.com GitHub - github.com/asthaade #NeetCode #Graph #DSA #CodingJourney
10/150 🚀 Solved Two Sum II (Input already Sorted). I utilized includes and indexOf, patched for duplicates. 📊 Time: O(n²) 📦 Space: O(1) It works ✅ but I know the sorted array begs for a cleaner two-pointer O(n) approach. Next step 👀. #NeetCode150 #LeetCode #100DaysOfCode
10/150 🚀 Solved Two Sum II (Input already Sorted). I utilized includes and indexOf, patched for duplicates. 📊 Time: O(n²) 📦 Space: O(1) It works ✅ but I know the sorted array begs for a cleaner two-pointer O(n) approach. Next step 👀. #NeetCode150 #LeetCode #100DaysOfCode https://t.co/7OP8GxIuZL
Day 59 of the #NeetCode150 Challenge! 🔸Dived into two fascinating greedy problems today. 1. Partition Labels 2. Valid Parenthesis DevConnect - devconnect-app-ucu2.onrender.com GitHub - github.com/asthaade #NeetCode #Greedy #DSA #CodingJourney
9/150 🚀 Solved Valid Palindrome. I leaned on my regex skills 🪄 to strip out non-alphanumerics, then compared the cleaned string with its reverse. ⏱ Time: O(n) 📦 Space: O(n) Regex made the filtering step feel smooth. #NeetCode150 #LeetCode #100DaysOfCode
9/150 🚀 Solved Valid Palindrome. I leaned on my regex skills 🪄 to strip out non-alphanumerics, then compared the cleaned string with its reverse. ⏱ Time: O(n) 📦 Space: O(n) Regex made the filtering step feel smooth. #NeetCode150 #LeetCode #100DaysOfCode https://t.co/PN5AdQq7Tj
8/150 🚀 Solved Longest Consecutive Sequence. I used sorting → grouped consecutive numbers → tracked longest streak. 📊 O(n log n) time, O(n) space. Not the O(n) optimal requirement, but I’m glad I came up with a working version 💪🏾 #NeetCode150 #LeetCode #100DaysOfCode
8/150 🚀 Solved Longest Consecutive Sequence. I used sorting → grouped consecutive numbers → tracked longest streak. 📊 O(n log n) time, O(n) space. Not the O(n) optimal requirement, but I’m glad I came up with a working version 💪🏾 #NeetCode150 #LeetCode #100DaysOfCode https://t.co/NJ2GChP9VC
Day 58 of the #NeetCode150 Challenge! 🔸Focused on another interesting greedy problem today. 1. Merge Triplets to Form Target Triplet DevConnect - devconnect-app-ucu2.onrender.com GitHub - github.com/asthaade #NeetCode #Greedy #DSA #CodingJourney
7/150 Tackled my first Sudoku Validator today. Rows, cols & sub-boxes gave me a hard time 😅 lots of trial & error before it finally clicked. 📊 Complexity: Time: O(1) (fixed 9×9) Space: O(1) Feels good seeing messy code turn into clean logic. Onward 💪 #NeetCode150 #LeetCode
Day 57 of the #NeetCode150 Challenge! 🔸Started the week with two greedy problems. 1. Gas Station 2. Hand of Straights DevConnect - devconnect-app-ucu2.onrender.com GitHub - github.com/asthaade #NeetCode #Greedy #DSA #Algorithms #CodingJourney
Day 56 of the #NeetCode150 Challenge! 🔸Wrapped up the week with the two 'Jump Game' problems 1. Jump Game 2. Jump Game II DevConnect - devconnect-app-ucu2.onrender.com GitHub - github.com/asthaade #NeetCode #Greedy #DSA #Algorithms #CodingJourney
Day 55 of the #NeetCode150 Challenge! 🔸Solved my 100th #NeetCode150 problem today using Greedy Algorithm 1. Maximum Subarray DevConnect - devconnect-app-ucu2.onrender.com GitHub - github.com/asthaade #NeetCode #Greedy #Milestone #100Problems
Day 54 of the #NeetCode150 Challenge! 🔸Dived into two more advanced graph problems today 1. Redundant Connection 2. Word Ladder DevConnect - devconnect-app-ucu2.onrender.com GitHub - github.com/asthaade #NeetCode #Graphs #DFS #BFS #DSA
Day 53 of the #NeetCode150 Challenge! 🔸Solved two problems today 1. Graph valid tree 2. Number of Connected Components In an Undirected Graph DevConnect - devconnect-app-ucu2.onrender.com GitHub - github.com/asthaade #NeetCode #Graphs #DFS #BFS #DSA
Day 52 of the #NeetCode150 Challenge! 🔸Dived into Topological Sorting today 1. Course Schedule 2. Course Schedule II DevConnect - devconnect-app-ucu2.onrender.com GitHub - github.com/asthaade #NeetCode #Graphs #DFS #BFS #DSA
Day 51 of the #NeetCode150 Challenge! 🔸Solved two graph problems using DFS 1. Pacific Atlantic Water Flow 2. Surrounded Regions DevConnect - devconnect-app-ucu2.onrender.com GitHub - github.com/asthaade #NeetCode #Graphs #DFS #BFS #DSA
Just finished first three questions on #neetcode150 list 🥳🥳🥳let’s goooo @neetcode1
Day 50 of the #NeetCode150 Challenge! 🔸Solved a graph problem using BFS 1. Rotting Oranges DevConnect - devconnect-app-ucu2.onrender.com GitHub - github.com/asthaade #NeetCode #Graphs #DFS #BFS #DSA
Day 49 of the #NeetCode150 Challenge! 🔸Solved another two questions using Graph. 1. Clone Graph 2. Walls And Gates DevConnect - devconnect-app-ucu2.onrender.com GitHub - github.com/asthaade #NeetCode #Graphs #DFS #BFS #DSA
Day 48 of the #NeetCode150 Challenge! 🔸Started the new section today: Graphs! 1. Number of Islands 2. Max Area of Island DevConnect - devconnect-app-ucu2.onrender.com GitHub - github.com/asthaade #NeetCode #Graphs #DFS #BFS #DSA
Day 47 of the #NeetCode150 Challenge! 🔸Solved two problems using Bit Manipulation! 1. Sum of Two Integers 2. Reverse Integer DevConnect - devconnect-app-ucu2.onrender.com GitHub - github.com/asthaade #NeetCode #BitManipulation #Bitwise #DSA
Day 46 of the #NeetCode150 Challenge! 🔸Solved two problems using Bit Manipulation! 1. Reverse Bits 2. Missing Number DevConnect - devconnect-app-ucu2.onrender.com GitHub - github.com/asthaade #NeetCode #BitManipulation #Bitwise #DSA