LeetCode 763. Partition Labels (Solution Explained)

  Рет қаралды 17,000

Nick White

Nick White

Күн бұрын

Пікірлер: 50
@meowmr9
@meowmr9 Жыл бұрын
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
@yashchamoli8695 Жыл бұрын
hey gentleman how your interview gone?
@Krishna42570
@Krishna42570 5 жыл бұрын
Plsss doooo hackerrank,codechef and alsoo continue doingg this leetcode...anyway ur explanation is awesome
@canobiggs
@canobiggs 5 жыл бұрын
Excellent explanation! Thank you.
@raam2508
@raam2508 5 жыл бұрын
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-palestine000
@free-palestine000 5 жыл бұрын
nick coming thru with the solutions 💯
@lifeofme3172
@lifeofme3172 4 жыл бұрын
Loved the explanation. This is coding question from Amazon :)
@rollinggoronable
@rollinggoronable 2 жыл бұрын
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
@reallifegambits
@reallifegambits 4 жыл бұрын
S will have length in range [1, 500] then why base condition?
@flamencoag
@flamencoag 4 жыл бұрын
Thanks! It is more clear than explanation on Leetcode's Solution section
@shubhamchourasia2265
@shubhamchourasia2265 3 жыл бұрын
You are fabulous. Just want to know how do u approach such non trivial problem/solution ?
@irynasherepot9882
@irynasherepot9882 4 жыл бұрын
Thank you very much for your excellent explanation!
@GiggsMain
@GiggsMain 3 жыл бұрын
How is it constance space? Isn't last_indices an array which is O(n) space?
@Cccc-es3tu
@Cccc-es3tu 3 жыл бұрын
good explanation, but i think in line 14, i should equal to start , right?
@maryannegichohi7063
@maryannegichohi7063 4 жыл бұрын
Your Explanations are awesome such a life saver
@quirkyquester
@quirkyquester 4 жыл бұрын
great explanation! Thank you Nick!
@MrThepratik
@MrThepratik 4 жыл бұрын
shout out for explaining it so well.
@anupamanair1299
@anupamanair1299 2 жыл бұрын
excellent solution
@TharaMesseroux1
@TharaMesseroux1 3 жыл бұрын
Great Explanation! Thank you!
@90krishika
@90krishika 4 жыл бұрын
We can do it without the extra space of int[]
@geetusharma3923
@geetusharma3923 4 жыл бұрын
Great video. Thanks a lot 😊👍
@divyabharti9879
@divyabharti9879 4 жыл бұрын
For loop should be int i = start instead of 0 .
@kamalkumar945
@kamalkumar945 2 жыл бұрын
Thank You Nick
@u2blr
@u2blr 3 жыл бұрын
Really nice video. This question statement is very confusing. Your explanation make it easy to understand
@udaychatterjee4424
@udaychatterjee4424 3 жыл бұрын
Wow! Great solution
@chenpeter4817
@chenpeter4817 2 жыл бұрын
clear explanation
@Noname-wp6zt
@Noname-wp6zt 4 жыл бұрын
Cool explaination
@Abood99222
@Abood99222 4 жыл бұрын
thanks this really helped!
@karthikbhat181
@karthikbhat181 4 жыл бұрын
Thank you so much for the wonderful explanation :)
@uzumakinaruto6945
@uzumakinaruto6945 2 жыл бұрын
The answer in my case is wrong by changing the like 17 BY arr.push_back(end+1-start); gives a fine answer
@abhimanyusaini5
@abhimanyusaini5 3 жыл бұрын
Thanks, Nice explanation :)
@sunnyday12131
@sunnyday12131 3 жыл бұрын
good explanation ! Happy2021
@NeverGiveUp186
@NeverGiveUp186 4 жыл бұрын
Excellent approach..I wish you could be a professor at my college 🙌🙌🙌🙌
@revanthsaireddyreddammagar268
@revanthsaireddyreddammagar268 4 ай бұрын
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]
@mrfred456123
@mrfred456123 4 жыл бұрын
"Wouldn't be one of my videos if I don't mess up!!"
@irynasherepot9882
@irynasherepot9882 4 жыл бұрын
Because he is a human
@kirank3368
@kirank3368 4 жыл бұрын
You are awesome 👏🏽
@sahithimangalapalli3068
@sahithimangalapalli3068 3 жыл бұрын
absolutely helpful :)
@babumon5351
@babumon5351 5 жыл бұрын
You are awesome..
@vikramchaudhary440
@vikramchaudhary440 3 жыл бұрын
I always like your video first before watching it
@hannahr5037
@hannahr5037 4 жыл бұрын
reprisigning
@deeproy2719
@deeproy2719 2 жыл бұрын
got it after seeing it in 2nd time
@chilld3666
@chilld3666 5 жыл бұрын
nice job!!!!
@subramanyammalepati8655
@subramanyammalepati8655 3 жыл бұрын
awesome
@ps8883
@ps8883 5 жыл бұрын
Why your channel don't show how many subscribers you have?
@mohammedharoon1167
@mohammedharoon1167 6 ай бұрын
wow 🤩🤩🤩🤩🤩🤩🤩
@lugiadark21
@lugiadark21 4 жыл бұрын
Can people actually come with these solutions in a real interview without seeing this problem before lol?
@lettttt5557
@lettttt5557 4 жыл бұрын
❤️❤️
@karankanojiya7672
@karankanojiya7672 2 жыл бұрын
Respect++
@The_Promised_Neverland...
@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
LeetCode 735. Asteroid Collision (Solution Explained)
14:24
Nick White
Рет қаралды 21 М.
LeetCode 539. Minimum Time Difference (Solution Explained)
15:01
Правильный подход к детям
00:18
Beatrise
Рет қаралды 1,9 МЛН
А я думаю что за звук такой знакомый? 😂😂😂
00:15
Денис Кукояка
Рет қаралды 6 МЛН
Lazy days…
00:24
Anwar Jibawi
Рет қаралды 8 МЛН
I thought one thing and the truth is something else 😂
00:34
عائلة ابو رعد Abo Raad family
Рет қаралды 17 МЛН
How I Failed the Google Coding Interview (and lessons I learned)
14:24
Winning Google Kickstart Round C 2020
30:57
William Lin (tmwilliamlin168)
Рет қаралды 4 МЛН
LeetCode 48. Rotate Image (Solution Explained)
10:18
Nick White
Рет қаралды 86 М.
Self Taught Programmers... Listen Up.
11:21
Nick White
Рет қаралды 1,1 МЛН
Partition Labels | Leetcode 763 | Greedy | Hashmap | Day-21
17:51
Ayushi Sharma
Рет қаралды 3,6 М.
I Got Rejected (again)
9:43
Nick White
Рет қаралды 205 М.
How To Pass Technical Interviews When You Suck At LeetCode
14:32
Правильный подход к детям
00:18
Beatrise
Рет қаралды 1,9 МЛН