Has someone ever told you how easy you make it to understand complicated problems and solutions? It's all because of you that I have started solving leetcode problems on my own and going to interview with TikTok very soon for a SDE role. Thanks for putting up all these videos online :)
@yashchamoli8695 Жыл бұрын
hey gentleman how your interview gone?
@Krishna425705 жыл бұрын
Plsss doooo hackerrank,codechef and alsoo continue doingg this leetcode...anyway ur explanation is awesome
@canobiggs5 жыл бұрын
Excellent explanation! Thank you.
@raam25085 жыл бұрын
very good explanation...a question Nick ! I have a Google screening round, a telephonic one. LeetCode questions are enough for practice ? Can you please tell me what should be the good material to clear that round? Thanks in advance.
@free-palestine0005 жыл бұрын
nick coming thru with the solutions 💯
@lifeofme31724 жыл бұрын
Loved the explanation. This is coding question from Amazon :)
@rollinggoronable2 жыл бұрын
old I know, but you explained perfectly, the "in at most part" made no sense reading it, you saying it was a head slap moment
@reallifegambits4 жыл бұрын
S will have length in range [1, 500] then why base condition?
@flamencoag4 жыл бұрын
Thanks! It is more clear than explanation on Leetcode's Solution section
@shubhamchourasia22653 жыл бұрын
You are fabulous. Just want to know how do u approach such non trivial problem/solution ?
@irynasherepot98824 жыл бұрын
Thank you very much for your excellent explanation!
@GiggsMain3 жыл бұрын
How is it constance space? Isn't last_indices an array which is O(n) space?
@Cccc-es3tu3 жыл бұрын
good explanation, but i think in line 14, i should equal to start , right?
@maryannegichohi70634 жыл бұрын
Your Explanations are awesome such a life saver
@quirkyquester4 жыл бұрын
great explanation! Thank you Nick!
@MrThepratik4 жыл бұрын
shout out for explaining it so well.
@anupamanair12992 жыл бұрын
excellent solution
@TharaMesseroux13 жыл бұрын
Great Explanation! Thank you!
@90krishika4 жыл бұрын
We can do it without the extra space of int[]
@geetusharma39234 жыл бұрын
Great video. Thanks a lot 😊👍
@divyabharti98794 жыл бұрын
For loop should be int i = start instead of 0 .
@kamalkumar9452 жыл бұрын
Thank You Nick
@u2blr3 жыл бұрын
Really nice video. This question statement is very confusing. Your explanation make it easy to understand
@udaychatterjee44243 жыл бұрын
Wow! Great solution
@chenpeter48172 жыл бұрын
clear explanation
@Noname-wp6zt4 жыл бұрын
Cool explaination
@Abood992224 жыл бұрын
thanks this really helped!
@karthikbhat1814 жыл бұрын
Thank you so much for the wonderful explanation :)
@uzumakinaruto69452 жыл бұрын
The answer in my case is wrong by changing the like 17 BY arr.push_back(end+1-start); gives a fine answer
@abhimanyusaini53 жыл бұрын
Thanks, Nice explanation :)
@sunnyday121313 жыл бұрын
good explanation ! Happy2021
@NeverGiveUp1864 жыл бұрын
Excellent approach..I wish you could be a professor at my college 🙌🙌🙌🙌
@revanthsaireddyreddammagar2684 ай бұрын
class Solution(object): def compressAndGetRanges(self, rangeDict): # Compress overlapping ranges in the given rangeDict and return the compressed ranges cRanges = [] # Stack to store compressed ranges for key, value in rangeDict.items(): print(key, value) # Check if the stack is not empty and if the current range intersects with the last range in the stack if len(cRanges) != 0 and self.isIntersection(value, cRanges[-1]): # Merge the intersecting ranges and push the merged range onto the stack cRanges.append(self.mergeRange(cRanges.pop(), value)) else: # Push the current range onto the stack cRanges.append(value) return cRanges def isIntersection(self, range1, range2): # Check if two ranges intersect return (range2[0] >= range1[0] and range2[0] = range2[0] and range1[0]
@mrfred4561234 жыл бұрын
"Wouldn't be one of my videos if I don't mess up!!"
@irynasherepot98824 жыл бұрын
Because he is a human
@kirank33684 жыл бұрын
You are awesome 👏🏽
@sahithimangalapalli30683 жыл бұрын
absolutely helpful :)
@babumon53515 жыл бұрын
You are awesome..
@vikramchaudhary4403 жыл бұрын
I always like your video first before watching it
@hannahr50374 жыл бұрын
reprisigning
@deeproy27192 жыл бұрын
got it after seeing it in 2nd time
@chilld36665 жыл бұрын
nice job!!!!
@subramanyammalepati86553 жыл бұрын
awesome
@ps88835 жыл бұрын
Why your channel don't show how many subscribers you have?
@mohammedharoon11676 ай бұрын
wow 🤩🤩🤩🤩🤩🤩🤩
@lugiadark214 жыл бұрын
Can people actually come with these solutions in a real interview without seeing this problem before lol?
@lettttt55574 жыл бұрын
❤️❤️
@karankanojiya76722 жыл бұрын
Respect++
@The_Promised_Neverland...2 жыл бұрын
MY CODE, ON MY OWN. kinda shitty class Solution { public: vector partitionLabels(string s) { vector res; int n=s.size(); unordered_map mpp; for(int i=0;i