Trapping Rainwater | Brute | Better | Optimal | with INTUITION

  Рет қаралды 279,675

take U forward

take U forward

Күн бұрын

Пікірлер: 283
@takeUforward
@takeUforward 3 жыл бұрын
Do leave a comment whether you understood the explanation or not, helps me a lot :) C++ Code Link: github.com/striver79/SDESheet/blob/main/trappingRainWaterC%2B%2B Java Code Link: github.com/striver79/SDESheet/blob/main/trappingRainWaterJava For live session follow at Instagram: instagram.com/striver_79/
@parikshitrathore1510
@parikshitrathore1510 3 жыл бұрын
@shashank choudhary he is not making video for growing rather he want to help the community in the best way possible!!...and as we have seen many guus were glad that they use the SDE sheet for there placements so, striver is making the videos so, that sde sheet can be done in less time and more efficiently!!
@abhishekranjansingh5348
@abhishekranjansingh5348 3 жыл бұрын
Seriously wanted this video , thanks bhaiya 😘😘😘😌😌😌
@suvojitray1431
@suvojitray1431 3 жыл бұрын
great work you have been working real hard for us
@vaibhavsethia70
@vaibhavsethia70 3 жыл бұрын
Understood it well.
@vishalsannapuri208
@vishalsannapuri208 3 жыл бұрын
Bro only the writing part is not so great so that's the only catch
@riteshsrivastava3447
@riteshsrivastava3447 3 жыл бұрын
*if you dont know how to calculate prefix max and suffix max , that is really fine u can learn it and continue doing SDE sheet , if u already know everything then u would not be needing any sheet*
@hikikomori9387
@hikikomori9387 2 жыл бұрын
can you please share a useful link for learning prefix max and suffix max ? i would be thankful
@vishnuvardhanmalepati7843
@vishnuvardhanmalepati7843 2 жыл бұрын
@@hikikomori9387 didn't find any.. Hence sharing the code for prefix max array and suffix max arrays (in Python) l_max = height[0] r_max = height[-1] n = len(height) prefix_max = [0]*n suffix_max = [0]*n # find the prefix maximum array for i in range(n): l_max = max(height[i],l_max) prefix_max[i] = l_max # find the suffix maximum array for i in range(n-1,-1,-1): r_max = max(height[i],r_max) suffix_max[i] = r_max print(prefix_max) print(suffix_max)
@navendraagrawal
@navendraagrawal 2 жыл бұрын
exactly
@chetanraghavv
@chetanraghavv 2 жыл бұрын
@@hikikomori9387 think of prefix max array as the array which at any index i contains the max element from index 0 till index i. //prefix max array of array "height" of size n vector left(n,0); left[0] = height[0]; for(int i=1;i=0;i--) right[i] = max(right[i+1], height[i]);
@hikikomori9387
@hikikomori9387 2 жыл бұрын
@@chetanraghavv I understand now, thank you so much Chetan bhai
@manojpandey7517
@manojpandey7517 3 жыл бұрын
Striver bhai DSA sheet leke aane waale aap pehle aadmi the. Uske baad saare youtubers DSA sheet leke aa rhe. 😂Par ham abhi bhi aapka hi follow krte hain. Ye legacy aapne hi shuru ki thi.
@shashankrustagi2812
@shashankrustagi2812 3 жыл бұрын
ye to mujhe pata hi nahi tha lol.
@shivamyadav6369
@shivamyadav6369 3 жыл бұрын
Video explanations bhai ka best hai plus voice m jo energy hai na wo jagaa k rkhti h
@pranaykumar9433
@pranaykumar9433 3 жыл бұрын
bhai love babbarne laya tha pehle
@takeUforward
@takeUforward 3 жыл бұрын
@@pranaykumar9433 na bhai date dekh lo dono videos k
@pranaykumar9433
@pranaykumar9433 3 жыл бұрын
Bhaiya word wrap question pr ek video bnaiye plz
@manikantabandla3923
@manikantabandla3923 Жыл бұрын
I feel intuition should precede the algorithm always. That's where the skill of problem-solving comes in.
@shivanimehta5280
@shivanimehta5280 3 жыл бұрын
Had my interview today and coincidentally the interviewer asked me the same problem. Seems like striver knew this beforehand so he dropped this video today only 😄😂
@takeUforward
@takeUforward 3 жыл бұрын
XD
@511-neelbutani9
@511-neelbutani9 3 жыл бұрын
Which company?
@sandeepdass55
@sandeepdass55 3 жыл бұрын
I really wanted to solve this and had optimal solution in mind but was not able to code it. Thanks to you as i searched a lot on youtube but didn't find better explanation than yours! Keep it up and thanks ^_^
@prithvigupta8215
@prithvigupta8215 2 жыл бұрын
9:22 most optimal solution 16:22 intuition
@avinashjha6355
@avinashjha6355 3 жыл бұрын
brother..i am waiting for you to finish all the problems in dsa sheet..you explain very well..please try to bring all the videos fast
@piyushkumar-wg8cv
@piyushkumar-wg8cv 2 жыл бұрын
I didn't know what is suffix max and prefix max, but now that I know what is suffix and prefix array I can compute it. I will continue with the SDE sheet also. Don't demotivate.
@harshtank7075
@harshtank7075 3 жыл бұрын
That optimized explaination with intuition went directly inside my head. Thank you brother 👍
@takeUforward
@takeUforward 3 жыл бұрын
Perfect!
@freshcontent3729
@freshcontent3729 3 жыл бұрын
can you please tell me how to write code to find the prefix and suffix array discuseed in this video ?
@freshcontent3729
@freshcontent3729 3 жыл бұрын
is this solution under DP ? if yes then why is it under DP ?
@krishnasai3367
@krishnasai3367 2 жыл бұрын
@@freshcontent3729 kzbin.info/www/bejne/jp_Koo2KhsiEaac&ab_channel=ClubofProgrammers%2CIITBHUVaranasi
@manistrikes
@manistrikes 2 жыл бұрын
@@freshcontent3729 making the prefix and suffix sum for further use takes this question to DP dimension...because we are storing the largest element till a particular index for the further use...so it's kind of memoization..dp thing...
@bhaveshkumar6842
@bhaveshkumar6842 3 жыл бұрын
You are the most effective teacher and I am immensely grateful for your work.
@datamining4655
@datamining4655 3 жыл бұрын
Why are we checking whether a[l]< a[r]? Isn't it more intuitive to check whether leftMax
@kshittizbhardwaj417
@kshittizbhardwaj417 3 жыл бұрын
Yes, you are right you can check that also even I did it the same way. It just depends upon which intuition strikes us first
@ritshpatidar
@ritshpatidar 2 жыл бұрын
The hardest part is after coming up with idea that we need to use two pointer. I had the idea but was unable to think, how can I take advantage of two pointers. My thinking says that if you know two pointers can solve this then always try to make values equal. If value at one pointer is less than other, and increment it towards other in order to find greater value.
@iamnottech8918
@iamnottech8918 8 ай бұрын
Like omg the optimal solution explanation is of next level
@kalpkumudkumar8163
@kalpkumudkumar8163 3 жыл бұрын
took me 2 times to understand intuition but this is best video you can get on this problem , good work .
@JayTharwani
@JayTharwani 6 ай бұрын
This is a great explanation with patience ! Thank you for sharing .
@ghoshdipan
@ghoshdipan 3 жыл бұрын
GOD LEVEL EXPLAINATION!
@gandhijainamgunvantkumar6783
@gandhijainamgunvantkumar6783 2 жыл бұрын
the last approach explanation was amazing. Thank you so much brother. :)
@SAICHARANREDDYN-wk9zk
@SAICHARANREDDYN-wk9zk Жыл бұрын
that intuition that you explained at the end cleared all my doubts and got me a solid understanding! perfect 🥳
@mukulbindal2303
@mukulbindal2303 3 жыл бұрын
Bro, honestly, I will still feel like I am being dishonest to the interviewer. I mean I can't explain this solution to him with a straight face.
@takeUforward
@takeUforward 3 жыл бұрын
It's not about how you feel, it's about understanding these things, and keep on solving a new problem every day. if you are able to solve every problem, how will you learn, the more you cannot solve, the more you learn.
@mukulbindal2303
@mukulbindal2303 3 жыл бұрын
@@takeUforward it's the fear of getting caught. Thanks btw. : )
@takeUforward
@takeUforward 3 жыл бұрын
@@mukulbindal2303 u are not cheating :) even the interviewer knows you have prepared from leetcode. No one expects you to come without preparing so chill out.
@mukulbindal2303
@mukulbindal2303 3 жыл бұрын
@@takeUforward Oh.. I didn't know that side.. If that's what it is, then no need to worry. Thanks Raj bro : )
@sanjayjoshi8807
@sanjayjoshi8807 3 жыл бұрын
@@takeUforward bhaiya if we are given with the width array also for respective building then we have to compute area ? make a video on it
@Rajat_maurya
@Rajat_maurya 2 жыл бұрын
whenever i stuck in a problem i search if u have made any video on that...love u
@nalingoyal881
@nalingoyal881 8 ай бұрын
We can always increase l and r when the height[l]
@stith_pragya
@stith_pragya 7 ай бұрын
Understood....Thank You So Much for this wonderful video..................🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻
@YashHalgaonkar
@YashHalgaonkar 2 жыл бұрын
I came here only to revise the two pointer method. Time stamps will be very helpful.
@Ace-ex9gg
@Ace-ex9gg Жыл бұрын
calculating suffix and prefix is one of the most basic question . I don't know why people complain about this sheet. Striver is a 6* coder and just imagine how would he feel about wasting time on that prefix and suffix.!!!!
@akashvaidsingh
@akashvaidsingh Жыл бұрын
One request, it will we very helpful if you add timestamp for each approach.
@rohansinghjr1195
@rohansinghjr1195 3 жыл бұрын
Brother I've seen some of the interviewers don't like,and said that if you know the optimal solution why not came up with it on first approach.... How to tackle that! Thanks in advance
@kshittizbhardwaj417
@kshittizbhardwaj417 3 жыл бұрын
did you get any answer?
@varunsharma5582
@varunsharma5582 2 жыл бұрын
Don't act like you know the optimal solution, struggle, talk to them, take hints and act like you made the solution based on their hints slowly.
@priyankapatil6783
@priyankapatil6783 4 ай бұрын
Hi Raj, Can you please explain about this problem "Interleaving Strings "
@santanu29
@santanu29 9 ай бұрын
I got the intuition when you explained the left pointer shifting. Did the rest by myself. Thank you for the video.
@saliqgowhar395
@saliqgowhar395 Жыл бұрын
you are for sure the best teacher India has ever seen ! 😀
@anupamdubey5736
@anupamdubey5736 3 жыл бұрын
Watched this video after Aditya Verma's for best solution with 2-pointer approach. Although, took some time to understand maxLeft and maxRight parts in 2-pointer but good learning took place. Thanks a lot Raj.♥️
@saichand1940
@saichand1940 3 жыл бұрын
This is the best explanation I can ever find on yt for this problem... respect++;
@subhamengine1143
@subhamengine1143 3 жыл бұрын
just saw the first 7 min and tried on my own.. and i solved it.. thanks..striver.
@leetcodebaby6680
@leetcodebaby6680 2 жыл бұрын
If you're looking for the code of the bruteforce approach that he mentioned then here you go: class Solution { public int trap(int[] height) { int units=0; for(int i=0; i
@RGMUTEX
@RGMUTEX 5 ай бұрын
Thanks a lot bro. So nice explanation..❤
@maneeshkumarpatel9874
@maneeshkumarpatel9874 2 жыл бұрын
That's the awesome solution. Thanks a lot Striver💓
@soumyadebbasu7882
@soumyadebbasu7882 3 жыл бұрын
Thank you Dada for your efforts !
@sanoferniswan5901
@sanoferniswan5901 5 ай бұрын
Really so helpful to understand better.. Thanks for sharing🎉
@fromdjangoimport__help__3585
@fromdjangoimport__help__3585 Жыл бұрын
use long long for storing ans if u r getting error
@kartikeyasingh5172
@kartikeyasingh5172 3 ай бұрын
2 pointer solution is mind blowing
@harshagarwal1218
@harshagarwal1218 3 жыл бұрын
Great Explanation! The way u emphasize on the intuition makes it easy to grasp it.
@freshcontent3729
@freshcontent3729 3 жыл бұрын
is this solution under DP ? if yes then why is it under DP ?
@de-codr8814
@de-codr8814 3 жыл бұрын
this is the best explanation available on youtube for this problem .👌👌👍😲
@yashgoyal7999
@yashgoyal7999 2 жыл бұрын
wonderful explanation, you explained it so easily, thanks striver🙂🙂
@prakharagarwal6237
@prakharagarwal6237 3 жыл бұрын
Simply beautiful✨✨ Thanks!
@freshcontent3729
@freshcontent3729 3 жыл бұрын
is this solution under DP ? if yes then why is it under DP ?
@prakharagarwal6237
@prakharagarwal6237 3 жыл бұрын
@@freshcontent3729 no it's not DP
@freshcontent3729
@freshcontent3729 3 жыл бұрын
@@prakharagarwal6237 then how can we do it using dp ?
@kage-musha1702
@kage-musha1702 3 жыл бұрын
Solutions and intuition are crystal clear as always bro
@manavmohata1240
@manavmohata1240 3 жыл бұрын
All the best!
@kage-musha1702
@kage-musha1702 3 жыл бұрын
@@manavmohata1240 Thanks bro All the best for you too :)
@mickyman753
@mickyman753 3 жыл бұрын
did you got placed
@kage-musha1702
@kage-musha1702 3 жыл бұрын
@@mickyman753 yea its a small company thou , i've got an opportunity as paid intern , if it goes well along they said they'll recruit for full time employee :D :)
@mickyman753
@mickyman753 3 жыл бұрын
@@kage-musha1702 All the best buddy , keep going and stay healthy
@AbhishekVerma-yw1ps
@AbhishekVerma-yw1ps 11 ай бұрын
Ye video 20 Dec 2020 ki hai and Love bhaiya ki 14 Oct 2020 ki hai. Iska matlab unki sheet pehle aayi thi
@vivekpatel6721
@vivekpatel6721 Жыл бұрын
I know striver you will reply to me but still I have a doubt that why have we used here this if condition height[left]
@SaurabhSingh-vg5vr
@SaurabhSingh-vg5vr Жыл бұрын
he is telling solution like gospel truths for life problems
@kunalkhandelwal5782
@kunalkhandelwal5782 Жыл бұрын
Such a great explanation...thanks a lot.
@ad8331
@ad8331 2 жыл бұрын
Not a HIndi speaker, but I prefer that you also release Hindi explaination video of the problem. It is difficult to understand the logic in english, but will be easier to explain in English once understood in a familiar langauge. Just a genuine request.
@Ak-um1yg
@Ak-um1yg 2 жыл бұрын
Global audience is the main target .. I guess
@roushanraj8530
@roushanraj8530 3 жыл бұрын
Bhya, explanation is too good, understood 💥💥💯
@sayantaniguha8519
@sayantaniguha8519 2 жыл бұрын
How does the optimized logic give correct answer for a sorted array ?
@-Corvo_Attano
@-Corvo_Attano 2 жыл бұрын
if the array is sorted , water will drain to the bottom.
@anandkumar.3307
@anandkumar.3307 3 жыл бұрын
finally i understood thanks a lot !!
@sbarbeloa
@sbarbeloa 3 жыл бұрын
Sir hats off to you for the optimal solution. Also wishing you a speedy recovery
@sourabhsisodia9563
@sourabhsisodia9563 3 жыл бұрын
Bhai mjaa aa gya .... Kya samjhaya hain.... Tumhare videos litreally above expectation hote hain...Majaa AA gya striver bhai
@freshcontent3729
@freshcontent3729 3 жыл бұрын
is this solution under DP ? if yes then why is it under DP ?
@sourabhsisodia9563
@sourabhsisodia9563 3 жыл бұрын
@@freshcontent3729 no it's not under dp
@freshcontent3729
@freshcontent3729 3 жыл бұрын
@@sourabhsisodia9563 then how can i do it using dp ?
@sourabhsisodia9563
@sourabhsisodia9563 3 жыл бұрын
@@freshcontent3729 i am just a beginner... Not started learning dp yet....If you want to know then just google it
@RohitSingh-hs4hv
@RohitSingh-hs4hv 3 жыл бұрын
Thank You Striver For this awesome Sheet
@dontknow592
@dontknow592 3 жыл бұрын
Thank You Sir. Bahot mast samjhaate hain. Aap🔥
@anshvashisht8519
@anshvashisht8519 2 жыл бұрын
7:15 what is prefix and suffix here?
@freshcontent3729
@freshcontent3729 3 жыл бұрын
is this solution under DP ? if yes then why is it under DP ?
@sandeepnallala48
@sandeepnallala48 3 жыл бұрын
Hi brother, i am new to this channel.. loved your vedios, In this prblm how can we directly come up with that solution you taught with two pointers, If we are actually seeing the prbln for the frst time?? The Intuition behind it also is not so staight forward?? I think we can think of that approach after seeing someones code or taking external help.. i want to ask onething bro, when u were doing it for the frst time, whether the same prblm with you or you got it right away??
@manikantabandla3923
@manikantabandla3923 Жыл бұрын
You are just teaching how to memorise the solutions.
@rishukumarsingh3926
@rishukumarsingh3926 Жыл бұрын
How do they think of such a great logic?...
@bhavyavijay0
@bhavyavijay0 3 жыл бұрын
how to compute the prefix max and suff max??
@-Corvo_Attano
@-Corvo_Attano 2 жыл бұрын
Striver's explanation is always perfect :)
@OilUp96
@OilUp96 Жыл бұрын
Thank you striver
@gokulreddy709
@gokulreddy709 3 жыл бұрын
Hey I am new to competitive coding and want to understand time complexity better can you make a video about. It will help me a lot. Thank You
@lokeshvikram6192
@lokeshvikram6192 3 жыл бұрын
very well xplained bro.I got the intuition
@prahladbhadani
@prahladbhadani 2 жыл бұрын
can't thank you enough for such superb explanation
@tanmay9928
@tanmay9928 Жыл бұрын
Really recommend watching this video at 1x speed.
@sharanpreetchadha3579
@sharanpreetchadha3579 3 жыл бұрын
Hey, I got the logic of solving the problem like when a[r]
@takeUforward
@takeUforward 3 жыл бұрын
I have answered this in the last portion, just before discussing the time complexity. You can watch it once, and let me know if there is till a doubt.
@prasantharavindramesh1078
@prasantharavindramesh1078 3 жыл бұрын
Bro awesome explanation. Just a follow up question. If the bars are of varying width then what will be the approach? Can I use array of struts to store width and height of each bar ?
@Kaivalyamani
@Kaivalyamani 3 жыл бұрын
Question remains same ...water stored depends on the height ....and unit can be calculated using formula of rectangle which must be given in the problem
@freshcontent3729
@freshcontent3729 3 жыл бұрын
is this solution under DP ? if yes then why is it under DP ?
@nishantsrivastava2931
@nishantsrivastava2931 3 жыл бұрын
great video...can u make the videos on the sde sheet section of dp first...just can't wait for such an awesome explanation of dp problems...
@freshcontent3729
@freshcontent3729 3 жыл бұрын
can you please tell me how to write code to find the prefix and suffix array discuseed in this video ?
@niitteenpathak8303
@niitteenpathak8303 2 жыл бұрын
Very Good Explanation👏👏👏👏👏👏👏
@ankitkumarmishra5198
@ankitkumarmishra5198 3 жыл бұрын
Brute force approach: class Solution { public: int trap(vector& height) { int ans=0; for(auto i=0;i
@freshcontent3729
@freshcontent3729 3 жыл бұрын
can you please tell me how to write code to find the prefix and suffix array discuseed in this video ?
@ganapatibiswas5858
@ganapatibiswas5858 2 жыл бұрын
This is Great Explanation
@shivnathsinghgaur5972
@shivnathsinghgaur5972 2 жыл бұрын
Optimal solution from 8.50
@parthh1112
@parthh1112 9 ай бұрын
class Solution { public: int trap(vector& v) { int ans = 0; vector lm(v.size(),-1); vector rm(v.size(),-1); int maxx = INT_MIN; for(int i=0;i=0;i--){ if(maxx < v[i]){ maxx = v[i]; } rm[i] = maxx; } for(int i=0;i
@myyoutubeisthis
@myyoutubeisthis Жыл бұрын
Thank you very much sir.
@18devpratapsingh33
@18devpratapsingh33 Жыл бұрын
C++ solution class Solution { public: int trap(vector& height) { int sum = 0; int n = height.size(); vector prefix(n,0); //leftsum vector suffix(n,0); // rightsum; // computing leftsum ; prefix[0] = height[0]; for(int i=1;i=0;i--){ suffix[i] = max(suffix[i+1],height[i]); } for(int i=0;i
@snehalsamale7404
@snehalsamale7404 2 жыл бұрын
Code provided in the discription giving wrong answer!
@Impromptu21
@Impromptu21 3 жыл бұрын
What if it is 3,0,1
@takeUforward
@takeUforward 3 жыл бұрын
The code is there, just put some cout statements and you will get how the loops runs
@shivalikagupta3433
@shivalikagupta3433 2 жыл бұрын
Extremely well explained!!! :))))
@parikshitrathore1510
@parikshitrathore1510 3 жыл бұрын
Understood Bhaiya!!😍😍🤩🤩
@Shivi32590
@Shivi32590 5 ай бұрын
thank you
@aadityakhetan956
@aadityakhetan956 3 жыл бұрын
Hats off to your efforts 👏 very nicely explained 🙌🙌
@avishkarghadge509
@avishkarghadge509 3 жыл бұрын
Is prefix sum same as prefix max array ? what is suffix max array ? seeing prefix max in code it just probably keeping maximum till known point but same logic couldnt translate to suffix max array Any links to articles ??
@spandanrastogi7144
@spandanrastogi7144 2 жыл бұрын
JAVA : PrefixMax and SuffixMax Solution : public int trap(int[] height) { int[] prefixMax = new int[height.length]; int max = 0; for(int i=0; i=0; i--){ max = Math.max(max, height[i]); suffixMax[i] = max; } int water = 0; for(int i=0; i
@mayurigawande5973
@mayurigawande5973 2 жыл бұрын
You are great man🤗may your all dreams come true😍🙌
@KishoreKumar-xr3fu
@KishoreKumar-xr3fu 3 жыл бұрын
Hi bro, could you please share the similar problems or if already shared those links where we can solve with prefix and suffix array(2nd approach in this video)
@jitinroy2246
@jitinroy2246 2 жыл бұрын
you can watch anuj bhaiya video on 2nd approach, search tapping rainwater problem on youtube.
@dayashankarlakhotia4943
@dayashankarlakhotia4943 Жыл бұрын
Very good explanation
@parthvaghela7820
@parthvaghela7820 Жыл бұрын
Maza aa gaya bhai. Superb work!!!
@manojnavinjamuri5867
@manojnavinjamuri5867 Жыл бұрын
i didnt udnerstand this explanation. please include sub titles.
@prashantraj6366
@prashantraj6366 2 жыл бұрын
I want to share 1 more approach It's a brute force and may lead to undesired triversal but easy to understand int trap(vector& v) { int m=0; for(int k:v){ m=max(k,m); } int ans=0; int st=0,en=v.size(); for(int j=0;j
@shubhankurkumar539
@shubhankurkumar539 3 жыл бұрын
Thanks!
@mantrarajgotecha3055
@mantrarajgotecha3055 2 жыл бұрын
Best explanation ever on youtube :))
@rejetimeghavardhan7805
@rejetimeghavardhan7805 3 жыл бұрын
Thanks a lot for the video such a good content understood very well
@freshcontent3729
@freshcontent3729 3 жыл бұрын
is this solution under DP ? if yes then why is it under DP ?
@rejetimeghavardhan7805
@rejetimeghavardhan7805 3 жыл бұрын
@@freshcontent3729 bro I forgot the solution I will once again go through it and tell the reason
@pranav288
@pranav288 2 жыл бұрын
7:20 Went through half the sde sheet understanding everything and bro said you shouldn't do it :(
@be_like__prateek
@be_like__prateek 3 жыл бұрын
@take U forward Yaar is two-pointer approach me to interviewer pakka samajh jayega ki is bande ne pahle ye kiya h....to fir usse kya bolenge ? I mean uske samne kese loudly sochna hai ?
@takeUforward
@takeUforward 3 жыл бұрын
Islie brute fir prefix fir 2 pointer pe jaana h, time gap lena hai, and interviewers ko bhi pata rahta hai u have prepared so chill rhta hai!
@abdullasulfikkar5282
@abdullasulfikkar5282 3 жыл бұрын
@@takeUforward but bhaiya what if there is a time limit? Like if the interview is for 1 hour only?
@be_like__prateek
@be_like__prateek 3 жыл бұрын
@@takeUforward thanks bhai!!!
@sounaksaha1455
@sounaksaha1455 2 жыл бұрын
Beautiful video sir
@piyushverma8207
@piyushverma8207 3 жыл бұрын
I just like your videos before even watching
L8. Trapping Rainwater | 2 Approaches | Stack and Queue Playlist
28:58
3 Sum | Brute -  Better - Optimal with Codes
38:25
take U forward
Рет қаралды 352 М.
This Game Is Wild...
00:19
MrBeast
Рет қаралды 152 МЛН
СКОЛЬКО ПАЛЬЦЕВ ТУТ?
00:16
Masomka
Рет қаралды 3,3 МЛН
Real Man relocate to Remote Controlled Car 👨🏻➡️🚙🕹️ #builderc
00:24
Remove Duplicates From Sorted Array | Brute | Optimal
10:47
take U forward
Рет қаралды 132 М.
Maximum Product Subarray - Best Intuitive Approach Discussed
20:27
take U forward
Рет қаралды 232 М.
Median of two Sorted Arrays of Different Sizes | Binary Search
31:54
take U forward
Рет қаралды 240 М.
Next Permutation - Intuition in Detail 🔥 | Brute to Optimal
28:15
take U forward
Рет қаралды 456 М.
Trapping Rain Water - Google Interview Question - Leetcode 42
23:21
Merge Overlapping Intervals | Brute, Optimal with Precise TC analysis
22:35
Arpit Bhayani talks about real engineering for 1 hour straight
1:16:23
This Game Is Wild...
00:19
MrBeast
Рет қаралды 152 МЛН