#neetcode150 Suchergebnisse

Keine Ergebnisse für "#neetcode150"
Keine Ergebnisse für "#neetcode150"
Keine Ergebnisse für "#neetcode150"

Had a good start today! Hopeful of solving more problems in the coming days and acing the #neetcode150 list...

keen_moron's tweet image. Had a good start today!
Hopeful of solving more problems in the coming days and acing the #neetcode150 list...

Day 69 of the #NeetCode150 Challenge! 🔸Solved two problems using DP. 1. Maximum Product Subarray 2. Word Break DevConnect - devconnect-app-ucu2.onrender.com GitHub - github.com/asthaade #NeetCode150 #DSA #DP

astha_ade's tweet image. Day 69 of the #NeetCode150 Challenge!                                 

🔸Solved two problems using DP.      

1. Maximum Product Subarray 
2. Word Break  

DevConnect - devconnect-app-ucu2.onrender.com                             
GitHub - github.com/asthaade 

#NeetCode150 #DSA #DP

Day 5: Solved "Group Anagrams" Used a character frequency array as a unique key to group anagrams into an object. #Neetcode150 #100DaysOfCode

tryhardev's tweet image. Day 5: Solved "Group Anagrams" Used a character frequency array as a unique key to group anagrams into an object. #Neetcode150 #100DaysOfCode

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

raheemdevs's tweet image. 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
raheemdevs's tweet image. 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

Just completed #neetcode150 list!! 🎉 by @neetcode1

devjyotshna's tweet image. Just completed #neetcode150 list!! 🎉
by @neetcode1
devjyotshna's tweet image. Just completed #neetcode150 list!! 🎉
by @neetcode1

Started the #Neetcode150 as a DSA beginner today. Wish me luck.

Shardendu_07's tweet image. Started the #Neetcode150 as a DSA beginner today. Wish me luck.
Shardendu_07's tweet image. Started the #Neetcode150 as a DSA beginner today. Wish me luck.

Day 12 of #Neetcode150 "Two Integer Sum II". Re-did the sum using 2-pointers (as it was intended to be solved). Had 2 pointers at the ends and sized them as we traversed through the elements till we found a match. O(n) time & O(1) space. #100DaysOfCode

tryhardev's tweet image. Day 12 of #Neetcode150 "Two Integer Sum II". Re-did the sum using 2-pointers (as it was intended to be solved).  Had 2 pointers at the ends and sized them as we traversed through the elements till we found a match. O(n) time & O(1) space.  #100DaysOfCode

Excited to join @TeamSoftway as a SE - II . Kudos to @kirat_tw for the cohort, @arpit_bhayani for the system design videos and @neetcode1 for the #Neetcode150. These resources make you fall in love with engineering, which translates to your work,mindset and a positive result.

Shiv_ssd's tweet image. Excited to join @TeamSoftway as a SE - II . Kudos to @kirat_tw for the cohort,  @arpit_bhayani for the system design videos and @neetcode1 for the #Neetcode150. These resources make you fall in love with engineering, which translates to your work,mindset and a positive result.

Day 3: Solved 'Two Sum'. Used an object to store index of numbers, then checked for the complement for every element. 🚀 #Neetcode150 #100DaysOfCode

tryhardev's tweet image. Day 3: Solved 'Two Sum'. Used an object to store index of numbers, then checked for the complement for every element. 🚀 #Neetcode150 #100DaysOfCode

🚀 Day 68 & 69 of #150dayslevelup: 1️⃣ Solved LQTD! ✅ 2️⃣ Tackled 8️⃣ questions from NeetCode 150—current progress: 74/150 📈 3️⃣ Studied about docker 🐳 4️⃣ Made strides in my Spring Boot project 💻✨ #development #NeetCode150 #SpringBoot #Docker

__ritik_741's tweet image. 🚀 Day 68 & 69 of #150dayslevelup:
1️⃣ Solved LQTD! ✅
2️⃣ Tackled 8️⃣ questions from NeetCode 150—current progress: 74/150 📈
3️⃣ Studied about docker 🐳
4️⃣ Made strides in my Spring Boot project 💻✨
#development #NeetCode150 #SpringBoot #Docker
__ritik_741's tweet image. 🚀 Day 68 & 69 of #150dayslevelup:
1️⃣ Solved LQTD! ✅
2️⃣ Tackled 8️⃣ questions from NeetCode 150—current progress: 74/150 📈
3️⃣ Studied about docker 🐳
4️⃣ Made strides in my Spring Boot project 💻✨
#development #NeetCode150 #SpringBoot #Docker

Day 2 of #Neetcode150: Solved "Valid Anagram". Used two hash maps to track character count in both strings. and compared their values #100DaysOfCode

tryhardev's tweet image. Day 2 of #Neetcode150: Solved "Valid Anagram". Used two hash maps to track character count in both strings. and compared their values #100DaysOfCode

Day 11 of #Neetcode150 "Two Integer Sum II". Created an object to keep track of compliments to the target and checked if it add to the target for every element. Simple O(n) solution. 🤓 #100DaysOfCode

tryhardev's tweet image. Day 11 of #Neetcode150 "Two Integer Sum II". Created an object to keep track of compliments to the target and checked if it add to the target for every element. Simple O(n) solution. 🤓 #100DaysOfCode

Day 14 of #NeetCode150 "Container With Most Water". Coded a really easy linear time solution using 2 pointers to track the first and the last element and moving it inward at the shorter height to check for larger area. #100DaysOfCode

tryhardev's tweet image. Day 14 of #NeetCode150 "Container With Most Water". Coded a really easy linear time solution using 2 pointers to track the first and the last element and moving it inward at the shorter height to check for larger area. #100DaysOfCode

Day 10 of #Neetcode150 "Valid Palindrome". Did a regex check for each letter being alphanumeric and went ahead with splitting it into an array, reversing and comparing it to the original string. #100DaysOfCode

tryhardev's tweet image. Day 10 of #Neetcode150 "Valid Palindrome". Did a regex check for each letter being alphanumeric and went ahead with splitting it into an array, reversing and comparing it to the original string. #100DaysOfCode

Day 9 of #Neetcode150 . Solved "Longest Consecutive Sequence". Created a set out of the array and iterated through it while maintaining a counter to track the longest sequence. #100DaysOfCode

tryhardev's tweet image. Day 9 of #Neetcode150 . Solved "Longest Consecutive Sequence". Created a set out of the array and iterated through it while maintaining a counter to track the longest sequence. #100DaysOfCode

Day 8 of #Neetcode150 "Valid Sudoku". Wrote checks for rows, colums and the 3x3 squares and mainaining the counts in an array. Late post, took some grilling to think about the cases. #100DaysOfCode

tryhardev's tweet image. Day 8 of #Neetcode150 "Valid Sudoku". Wrote checks for rows, colums and the 3x3 squares and mainaining the counts in an array. Late post, took some grilling to think about the cases. #100DaysOfCode

Day 7 of #Neetcode150: Solved "Products of Array Except Self". Created 2 arrays to store the products from the beginning and the end and used them to get the product of the current index. Done in O(n). #100DaysOfCode

tryhardev's tweet image. Day 7 of #Neetcode150: Solved "Products of Array Except Self". Created 2 arrays to store the products from the beginning and the end and used them to get the product of the current index. Done in O(n). 
 #100DaysOfCode

Day 4: Solved "Top K Frequent Elements". Counted frequencies with a hash map, sorted numbers by frequency in descending order, and returned the top k elements. #Neetcode150 #100DaysOfCode

tryhardev's tweet image. Day 4: Solved "Top K Frequent Elements". Counted frequencies with a hash map, sorted numbers by frequency in descending order, and returned the top k elements.  #Neetcode150 #100DaysOfCode

Day 1 of my #Neetcode150 journey begins! 🛠️ Solved the first problem "Contains Duplicate". Implemented an object and checked if each number is already stored. If yes, return true otherwise false.

tryhardev's tweet image. Day 1 of my #Neetcode150 journey begins! 🛠️ Solved the first problem "Contains Duplicate". Implemented an object and checked if each number is already stored. If yes, return true otherwise false.

Loading...

Something went wrong.


Something went wrong.


United States Trends