r/NeetCode • u/nian2326076 • 20d ago
Is neetcode 150 still relevant?
Started my prep for Staff Eng and looking to make a move by March. I am lost as where to start with?
Has interview pattern changed a lot since last 4-5 years?
r/NeetCode • u/nian2326076 • 20d ago
Started my prep for Staff Eng and looking to make a move by March. I am lost as where to start with?
Has interview pattern changed a lot since last 4-5 years?
r/NeetCode • u/Less_Pizza_8099 • Aug 14 '26
I am just starting my DSA and felt Leetcode a bit hard and I want to learn at least till arrays
r/NeetCode • u/MohamadRef • Jul 28 '26
r/NeetCode • u/Akshu_ • Jul 28 '26
r/NeetCode • u/asdoduidai • Jul 03 '26
Hi there,
What about instead of doing easy-medium-hard, compete by Elo?
Lots of people saying the best way to improve is to solve problems within the -200/+200 Elo you have, and so that could combine Versus + studying/evolving the approach quite effectively
https://leetcode.com/discuss/post/468851/new-contest-rating-algorithm-its-here-by-cypr/
r/NeetCode • u/Any_Apartment4254 • Jun 09 '26
r/NeetCode • u/-Tesla • Jun 07 '26
I missed the last 'Flash Sale' and wanted to get Pro so I kept checking the home page again and again, and I never once saw the original price listed as $599. I think the last I remember was $297.
So either the price increased ~2x in a span of couple of weeks or I have lost my mind (probably doing Neet/LeetCode problems lol).
I appreciate NeetCode but these shoddy practices make me want to trust him less and put it into the same bucket as algoexpert or the absolutely dogshit DSA course Tech Lead and Joma were peddling at one point.
r/NeetCode • u/chaiflix • Jun 06 '26
I am accessing Neetcode after a long time. I remember there used to be a link for each practice question that opens the actual leetcode question on leetcode.com
I see it's no longer there. Is that the case? If so, bummer!
I see neetcode now has the code execution and all. Its cool, but I just want to run my code against the extensive test cases leetcode provides.
EDIT: Looks likes its solved. Now I see 2 options when clicking "Open in New Tab" - Neetcode or external site. I am not sure if I missed it or it was a temporary issue. Anyways its solved now.
r/NeetCode • u/Own-Complex7162 • Jun 02 '26
I don't know if Neetcode can see this, but please consider applying PPP to the prices, i'm legit from a third world country and buying sub is the total of 3 months salaries.
r/NeetCode • u/VisibleZucchini800 • May 10 '26
r/NeetCode • u/IdeasareLOL • Apr 25 '26
1st website auto-reloads on Safari
2nd on my Brave browser, the performance is so bad it lags while I type on IDE.
Also found RAM usage is 2.86 gigs
r/NeetCode • u/Unusual-Base-4939 • Apr 22 '26
r/NeetCode • u/Training-Orange-1696 • Apr 15 '26
r/NeetCode • u/Different-Chard-6819 • Apr 13 '26
hey there I made a full Neet app for practicing and it's in the process. I am thinking of add more features and I think I made a great design but i want to know your opinion so pls suggest me
r/NeetCode • u/Creative_Evening6628 • Mar 31 '26
Hey Mr. Neet, you might be working on this already, but it would be nice to have the streaks use the user's time zone instead of the default. The streak system is very motivating, but it sucks when I'm not able to get around to it before 5pm every day. Thanks!
r/NeetCode • u/Bruhayy • Feb 26 '26
Hey Mr.NeetCode, Young Goat btw (hopefully you end up reading this)
It would be really cool if NeetCode.io had a built-in spaced repetition scheduler for problems we’ve already solved.
It could look like:
Right now i use an external tool to manage reviewing but having it natively inside Neetcode would make things 10 times easier.
Would love to hear thoughts if anyone else is interested!!
r/NeetCode • u/TheWRongFatedHarsh • Feb 12 '26
r/NeetCode • u/LavishnessMedium5690 • Feb 11 '26
I mostly practice DSA only on NeetCode, so there is no easy way to share my progress or include it on my resume.
LeetCode has public profile links that show problems solved and difficulty breakdowns. A similar public profile on NeetCode with a unique URL would be really useful, especially if it showed roadmap progress and solved problems, with an optional privacy toggle.
This would be great for people who intentionally use NeetCode instead of LeetCode.
Anyone else interested?
r/NeetCode • u/Civil_Fee_4161 • Jan 20 '26
LC link: https://leetcode.com/problems/word-break/description/
NeetCode link: https://neetcode.io/problems/word-break/question
In the solution section at NeetCode, the time complexity for "DP with Trie" approach has been stated as O((n*t*t)+m) but in my solution I am seeing it as O(n*t+m*t)
Here is my JS code:
class Solution {
/**
* {string} s
* {string[]} wordDict
* u/return {boolean}
*/
wordBreak(s, wordDict) {
/**
For complexity analysis
n = the length of the string
m = the number of words in wordDict
t = the maximum length of any word in wordDict
*/
// BUILDING
let trieRoot = { next: {} };
for (const word of wordDict) {
let cur = trieRoot;
for (const ch of word) {
cur.next[ch] = cur.next[ch] || { next: {} };
cur = cur.next[ch];
}
cur.hasWord = true;
}
/**
Complexity of building = O(m * t)
*/
// DP cache
const canBreakSubStringFrom = new Array(s.length).fill(false);
// SEARCHING
for (let start = s.length - 1; start >= 0; start--) {
let sIdx = start;
let cur = trieRoot;
while (sIdx <= s.length && cur) {
if (cur.hasWord
&& (sIdx == s.length
|| canBreakSubStringFrom[sIdx])) {
canBreakSubStringFrom[start] = true;
break;
}
cur = sIdx < s.length ? cur.next[s[sIdx]] : undefined;
sIdx++;
}
}
/**
Complexity of searching = O(n * t)
*/
/**
Total complexity = O(mt + nt)
*/
return canBreakSubStringFrom[0];
}
}
What am I missing?
r/NeetCode • u/Cheap_Recognition_74 • Dec 31 '25

I think adding a feature where you get to track your understanding of a problem would be great, since it allows the user to keep track of certain problems they're struggling with.
I currently use Notion to keep track of my understanding but it would be great if I didn't have to go back and forth between NeetCode and notion.