Table of Contents: Talking About Stuff 0:00 - 1:05 Introducing Quicksort 1:05 - 2:04 The Split Subroutine 2:04 - 2:43 The Partition Subroutine 2:43 - 3:24 Partitioning: Choosing A Bad Pivot 3:24 - 10:34 Partitioning: Choosing A Good Pivot 10:34 - 15:11 Analysis: Choosing Bad Pivots 15:11 - 19:06 Analysis: Choosing Good Pivots 19:06 - 22:07 Analysis: Good Pivots - Work Done At Leaf Level 22:07 - 23:37 Flashback To Merge Sort 23:37 - 24:01 Why Quicksort Is O(n*log(n)) 24:01 - 25:02 Wrap Up 25:02 - 26:12 Errors: 3:25 - 15:11 -> I messed up how I advanced 'i' in both examples. I should have started 'i' at left - 1 everytime...my bad. What should happen is that we should start 'i' at 'left - 1' and anytime we swap into 'i' we always advance 'i' FIRST before the swap. These errors don't change the fundamental job of 'i', which is to keep the tail of the section of items less than the pivot. Make sure you take that away from this. 4:02 -> Forgot to edit that text out haha 24:23 -> This is only the exact bound on the best case. Not the average case as well. The code for quicksort is in the description. Fully commented for teaching purposes.
Hey man. Been watching your videos for a few weeks. Your explanations and thought process is exactly what I needed to get a refresher on all things ds&a. I just recently landed a job offer at a dream company, so thanks a ton for all your hard work and help!
FINALLY someone who explains what a pivot is. Pivot concept is key to understand how quicksort works and also to understand "the kth largest element in an array" problem.
2022 and you're still helping people. I'm not enjoying my classes but watching your videos give me reassurance that I really like these topics. Thanks a lot man!
Stumbled upon this during my interm. algorithms class at UC Riverside. Honestly dude, your short videos do more than entire lectures for my understanding. Thank you.
Dude. Thank you for putting the time in making these videos. They are IMMENSELY helpful! Don't burn out making them, take your time, do them at your pace, cause they are some of the best in the business. Really, you are awesome.
Thanks. I haven't burnt out. I just started work in San Francisco and I am building a pretty cool and fancy site for this channel which I hope to launch mid-end of July. Once it is out I'll be back on the throttle to post more technical videos as I support the site and begin working on the next software.
It's impacting. In a good way. Most professors in most cs programs really don't go into detail about these algorithms much. Even grad school programs have that problem at times because then it seems like you should know these things. You're doing a good job and hopefully this channel and others stick around.
This is one of the Back to Back SWE videos have helped me understand "Introductions to Algorithms" - a book probably aimed at people who already understand the algorithms in question. I am so glad for this series. Thanks a lot!
Don't stop doing what you're doing! These videos have been an incredible help in getting my head around algorithmic time complexity for my computer science masters - thank you!!
dude you're literally the only reason why I understand these algorithms. My CS 101 prof teaches so weirdly, you should really consider pursuing academia if you haven't already
you have been a huge factor in helping me understand some of these concepts. Please keep it up. You're the first place that I go when I'm having trouble.Thank you!
One of the best Tech -tuber, has an website on interview prep and still gives his best in youtube explanantions and dont advertise his website on youtube like tech lead , clement does, tech-lead and clement should learn from him on how to give best in youtube and stop honeytrapping vulnerable kids
You are my favorite! What is really helpful is that you explain the idea, which is what a lot of videos don't do. Mosts just focus on the coding, but not in the concepts. I'm very thankful I found you!
Hey man thanks for posting these videos they are helping me a bunch, I'm about a month out from my job hunt, using your videos to prep while I continue to learn some Angular. Going to pitch in what I can for the Patreon thanks again !!!
Hey, my friend. I'm an SDE with a couple of years of industry and academic background. I really appreciate your effort to explain this algorithm. Regardless of the commercial purpose behind the video, your explanation is mostly accurate and easy to understand ( Though I have to say, it's better for you to put the average case before the worst-case example in this video.) Carry on, looking forward to new content from you! btw: I have the confidence to say many, yes many, explanations of quicksort from some others are WRONG. Well done, sir!
Thank you for making these videos! The way you explain and break down things are great! They are helping me so much here in 2022 and I am going to try and watch all of them. I wish you much success in your career!
Hay man I just want to say thanks for all the videos because of that today I am having f2f interview in Amsterdam. I am not sure I will pass or not but you gave me enough confidence to face it.. :) cheers
Hahaha nice! I just came back from Amsterdam...like 2 days ago. That's wild. I walked past the Oracle office behind this one Dutch dude who was speaking Dutch and he had a cool Oracle bookbag. Ahhh...good times.
I have never commented on a UA-cam video before but thank you so much for this! Your code for Quicksort actually makes sense, which is something I have not found to be the case for other sources, including Cracking the Coding Interview. I have subscribed :)
Happy Holidays 🎉 this means so much, thanks, songulmesale! We'd love to offer you a 40% Off our exclusive lifetime membership just use the code CHEER40 - backtobackswe.com/checkout?plan=lifetime-legacy&discount_code=CHEER40
Amazing videos, the only teacher who actually explains algorithms clearly! One question- at 11:19 you said that "it does matter where i goes... I messed up... but you get the idea". Where should i go, at -1 or 0?
I saw in your attached code that i starts at -1, so that when j finds a number, i will be incremented to point to the next available spot in the 'less-than' portion. Then the swap occurs, and j is advanced forward. However, I've also been messing around with my own implementation and it seems that you can start i at 0, as long as you perform the swap first and THEN increment i. When it comes to reinserting the pivot, it needs to be at i (rather than at i+1 when i starts at -1).
Sir, I really need a help from you, I am not really good at Dynamic programming and there's a problem that's eating my head for a long time, could you please please please solve it and make me understand?
There an explanation of the problem by Rachit Jain on UA-cam but I didn't get the multiple DP going on in parallel. Please help me, coz there's none to guide me! Thanks! :)
2021 and your explanations still helps, a lot. thank you so much! gonna binge on your vids and hopefully it helps my journey throughout this CS major :')
Happy Holidays 🎉 Haha Thank you for your kind words! We'd love to offer you a 40% Off our exclusive lifetime membership just use the code CHEER40 - backtobackswe.com/checkout?plan=lifetime-legacy&discount_code=CHEER40
At 10:38, you say that it doesn't matter where i starts; as far as I saw the algorithm says it's got to start at start - 1, which de facto makes all the passes in the first iteration to swap i with j, but all instances of i and j are equal (that's cause you increment the i before the swap), or the condition about array[j]
Hello. I have a question. Im 10:25 and i dont understand why the complexity in this case is 0(n^2) . It should not be n! ? Because there are n-1 steps , n-2 steps , n-3 ... 1 ?
The example at 11:00 can be more helpful if it has a number in the first half that is greater than the pivot, for example [3, 8, 4, 5, 9, 7] and pivot is 7. when i = 0, j = 1, we don't do the swap since 8>7, then j becomes 2 and based on your description we swap 3 and 4? What about 8 in between them? It should not stay where it is
the i value would be less than the pivot, and the i + 1 would be greater than the pivot, so he swapped the pivot with i + 1 so that the pivot would be in its final spot, and the less and greater values can then be sorted separately using recursion.
@@BackToBackSWE Thanks for this video and for replying. I don't know what it is either, which is why I asked. Apparently there are two common ways to partition: Lomuto's way or Hoare's way. en.wikipedia.org/wiki/Quicksort#Hoare_partition_scheme
No. This one is Lomuto's partition scheme when you have two pointers (i and j) starting from the beginning. Hoare's partition is when we have two pointers: one starts from the beginning, second starts from the end. Looks like Hoare's partition is more preferable cause it makes 3 times less swaps than Lomuto's in average. cs.stackexchange.com/questions/11458/quicksort-partitioning-hoare-vs-lomuto www.geeksforgeeks.org/hoares-vs-lomuto-partition-scheme-quicksort/
I asked myself the same question because there are different ways of quick sort implementation and they really differ. So it was a bit confusing for me at first why I see the same algorithm and different ways to implement it.
Love the video, but isn't there a more optimized way to implement quick sort? In the code, it always picks the last item as the pivot, which is some cases with large inputs, it will timeout.
Does anyone understand how 17:32 worked? I would have thought the summation would be the sum n-i from i=1 to n-1. This is due to the pattern of seeing n-1, n-2 , n-3 on each level and needing to add them all together
This seems to be a mistake but I don't remember the math from this video too much. I was going straight from notes I took before the video so not sure what I was on about. It still would be quadratic comparisons: imgur.com/a/MWQOBkd. Can you affirm this was a mistake? Then I can update the pinned note to point it out. Thanks!
@@BackToBackSWE No problem at all, so sorry for the late response was so deep into algos study that I never looked at UA-cam until I finished my exam yesterday! The maths checks out. If you think about it the sum of (n-i) for i incrementing all the way to n does just equal the sum of i. For instance, let n be 5 and i = 0 and lets follow the (n - i = val) format. (5 - 0 = 5) + (5 - 1 = 4) + ... + (5 - 4 = 1) Which is the same as 0 + 1 + ... + 5. I hope that cleared that up, thanks for making this content, I absolutely love your videos and will continue to subscribe even beyond algos class :)
A CS tutor that speaks clearly and concisely??? Very rare!
yeah
Jonathan Banuelos you mean he doesn’t speak Indian accent lol
@@alanliang9538 what do you mean by that??
@@pulkitjain8135 racism
just say you're xenophobic and move on
Table of Contents:
Talking About Stuff 0:00 - 1:05
Introducing Quicksort 1:05 - 2:04
The Split Subroutine 2:04 - 2:43
The Partition Subroutine 2:43 - 3:24
Partitioning: Choosing A Bad Pivot 3:24 - 10:34
Partitioning: Choosing A Good Pivot 10:34 - 15:11
Analysis: Choosing Bad Pivots 15:11 - 19:06
Analysis: Choosing Good Pivots 19:06 - 22:07
Analysis: Good Pivots - Work Done At Leaf Level 22:07 - 23:37
Flashback To Merge Sort 23:37 - 24:01
Why Quicksort Is O(n*log(n)) 24:01 - 25:02
Wrap Up 25:02 - 26:12
Errors:
3:25 - 15:11 -> I messed up how I advanced 'i' in both examples. I should have started 'i' at left - 1 everytime...my bad. What should happen is that we should start 'i' at 'left - 1' and anytime we swap into 'i' we always advance 'i' FIRST before the swap. These errors don't change the fundamental job of 'i', which is to keep the tail of the section of items less than the pivot. Make sure you take that away from this.
4:02 -> Forgot to edit that text out haha
24:23 -> This is only the exact bound on the best case. Not the average case as well.
The code for quicksort is in the description. Fully commented for teaching purposes.
Hey man. Been watching your videos for a few weeks. Your explanations and thought process is exactly what I needed to get a refresher on all things ds&a. I just recently landed a job offer at a dream company, so thanks a ton for all your hard work and help!
nice. Hope work goes well and you are happy :)
My feeling is also same here, Iwas searching for this kind of thinking ability
FINALLY someone who explains what a pivot is. Pivot concept is key to understand how quicksort works and also to understand "the kth largest element in an array" problem.
yes
2022 and you're still helping people. I'm not enjoying my classes but watching your videos give me reassurance that I really like these topics. Thanks a lot man!
Glad to hear that! Subscribe to our DSA course with a flat 30% discount for some amazing content b2bswe.co/3HhvIlV
This guy's : is this ever impacting u?
Me : what? It's saving my life
great lol
Stumbled upon this during my interm. algorithms class at UC Riverside. Honestly dude, your short videos do more than entire lectures for my understanding. Thank you.
You're one of the most eloquent tech guys on youtube. I just started programming this month, and your video helped me implement quicksort in JS!
great! but im not a tech guy, Im just a guy
Dude. Thank you for putting the time in making these videos. They are IMMENSELY helpful! Don't burn out making them, take your time, do them at your pace, cause they are some of the best in the business. Really, you are awesome.
Thanks. I haven't burnt out. I just started work in San Francisco and I am building a pretty cool and fancy site for this channel which I hope to launch mid-end of July. Once it is out I'll be back on the throttle to post more technical videos as I support the site and begin working on the next software.
It's impacting. In a good way. Most professors in most cs programs really don't go into detail about these algorithms much. Even grad school programs have that problem at times because then it seems like you should know these things. You're doing a good job and hopefully this channel and others stick around.
This is one of the Back to Back SWE videos have helped me understand "Introductions to Algorithms" - a book probably aimed at people who already understand the algorithms in question. I am so glad for this series. Thanks a lot!
great
Don't stop doing what you're doing! These videos have been an incredible help in getting my head around algorithmic time complexity for my computer science masters - thank you!!
I wish I just watched your videos instead of taking my algorithms and data structures class
ye
dude you're literally the only reason why I understand these algorithms. My CS 101 prof teaches so weirdly, you should really consider pursuing academia if you haven't already
thanks and I do not want to
@@BackToBackSWE relatable LOL
@@BackToBackSWE lmao
"We do not place an item, into the section, that is less than the pivot." - just needed that much.
Thank You, Brother! #keepUptheGoodWork.
Impact ?? it's life saver.... when ever i get stuck on some basic concepts ..this is the place i jump to... keep up the good work.
hahaha thanks, yeah I'm back, about to make a ton of videos
One of the best instructors on UA-cam! Thank you for your contribution!
you have been a huge factor in helping me understand some of these concepts. Please keep it up. You're the first place that I go when I'm having trouble.Thank you!
Thank you, glad you liked it 😀
Do check out backtobackswe.com/platform/content
and please recommend us to your family and friends 😀
now we are at 161k
thank you for all your efforts
love from india
This guy is a genius, find an easy and intuitive way to explain.
One of the best Tech -tuber, has an website on interview prep and still gives his best in youtube explanantions and dont advertise his website on youtube like tech lead , clement does,
tech-lead and clement should learn from him on how to give best in youtube and stop honeytrapping vulnerable kids
thx
tech lead is a psychopath lol
You are my favorite! What is really helpful is that you explain the idea, which is what a lot of videos don't do. Mosts just focus on the coding, but not in the concepts. I'm very thankful I found you!
great and glad you're here.
Hey man thanks for posting these videos they are helping me a bunch, I'm about a month out from my job hunt, using your videos to prep while I continue to learn some Angular. Going to pitch in what I can for the Patreon thanks again !!!
Aw, thanks
Hey Man i am also in the same position with Algo and Angular but i think i am comfortable with Angular, Do you want to study together ?
Watching from Chicago and love this so much! Thanks for clarifying this algorithm.
For sure your videos is causing a positive impact. At least, for me this channel is so valuable. Great job man!
Hey, my friend. I'm an SDE with a couple of years of industry and academic background. I really appreciate your effort to explain this algorithm. Regardless of the commercial purpose behind the video, your explanation is mostly accurate and easy to understand ( Though I have to say, it's better for you to put the average case before the worst-case example in this video.) Carry on, looking forward to new content from you!
btw: I have the confidence to say many, yes many, explanations of quicksort from some others are WRONG. Well done, sir!
one more suggestion, I will be better for you to explain why quick sort is "Quick". I know the answer..but..I'll leave the work to you...
Thank you for making these videos! The way you explain and break down things are great! They are helping me so much here in 2022 and I am going to try and watch all of them. I wish you much success in your career!
Thank You!!
Do check out backtobackswe.com/platform/content
and please recommend us to your family and friends :)
This is the only vedio I found which tells exactly what exactly is PIVOT.. THANKS
BRO
sure...bro.
I've never understood something so clear... thank you so much! :')
nice!
Hay man I just want to say thanks for all the videos because of that today I am having f2f interview in Amsterdam. I am not sure I will pass or not but you gave me enough confidence to face it.. :) cheers
Hahaha nice! I just came back from Amsterdam...like 2 days ago. That's wild. I walked past the Oracle office behind this one Dutch dude who was speaking Dutch and he had a cool Oracle bookbag.
Ahhh...good times.
@@BackToBackSWE Ohh I missed my chance of doing mock interview with you :p
@@jageenshukla4825 haha
probably the most easy to understand video on quicksort. Thank you
I haven't understood quicksort for 2 years, thanks a bunch man
thanks for watching
You're very good at explaining. I watch your videos and they make me very happy
Hey Bro.... Just wanna say... Keep up with your videos, they help students like us all around the globe..... ❤️❤️❤️❤️❤️❤️
hah nice!, wassup
Wonderful tutor! With each passing days, I am falling in love with Algo's, good job brother..looking forward to have more lessons from u.
great to hear.
I guess you have not enough subscribers and watches! One of the best CS videos I ever seen. Thank you!
we coolin', in time
Thank you so much,you probably dont know how much this means to me. Love from india🇮🇳
sure and thanks
You are a legend. I always go watch you on here before a class :)
What a great teacher, my god! always amazed by your skills ❤
Amazing Videos ! I love how you explain everything at the deepest level which is exactly what I need to understand those algorithms properly :D
great
this channel deserves more than million subs
I have never commented on a UA-cam video before but thank you so much for this! Your code for Quicksort actually makes sense, which is something I have not found to be the case for other sources, including Cracking the Coding Interview. I have subscribed :)
welcome to the rodeo
ı hated data structures lectures before thıs man but now I can easily understand everythıng .thank u a lot .You are my hero :)
Happy Holidays 🎉 this means so much, thanks, songulmesale! We'd love to offer you a 40% Off our exclusive lifetime membership just use the code CHEER40 - backtobackswe.com/checkout?plan=lifetime-legacy&discount_code=CHEER40
I wish i could like the video million times. Thanks for the gift.
sure
give this man a gold metal! respect!
thanks
I hope you realize that you are changing peoples lives!(for the better).
great to hear
TY so much. Clearest quicksort video on youtube
thanks
Perfect! I really love that, you explain it as good as it's posssible. Nice.
Teaching is an art and you are an artist :)
yis
Best content I have ever encountered
thx
@@BackToBackSWE you really read your comments. Only some have this quality.
Really Impressed
@@saurabhjindal2775 Yeah haha, why wouldn't I. I really care about what I'm building.
Finally understand quick sort! Thanks so much
Amazing videos, the only teacher who actually explains algorithms clearly! One question- at 11:19 you said that "it does matter where i goes... I messed up... but you get the idea". Where should i go, at -1 or 0?
I saw in your attached code that i starts at -1, so that when j finds a number, i will be incremented to point to the next available spot in the 'less-than' portion. Then the swap occurs, and j is advanced forward. However, I've also been messing around with my own implementation and it seems that you can start i at 0, as long as you perform the swap first and THEN increment i. When it comes to reinserting the pivot, it needs to be at i (rather than at i+1 when i starts at -1).
Thanks for hard work, I can see how much effort you put in this video.
ye
You explanation is amazing. be assured that one day I will take few days off to watch all your algorithm themed videos :)
thanks and nice
Your videos are really awesome and have helped me alot in my data structures class for LSU. Thank You!
sure
You had a great impact on me!!! You are a blessing!!!!
nice, wassup
You are gifted! Thanks for making these concepts easy
Continue! You are doing great, man! Thanks a lot!
It's glad to see that my favorite basketball player Chris Paul teaching the algorithm courses.
Thanks for this, I was actually wondering couple days ago why there isn't a sorting video for quick sort.
yeah, give me a year or 2, this channel needs to be fleshed out more. I'm aware of all that's missing for the most part.
The best explanation ever, so detailed, I really enjoyed it!
nice
Sir, I really need a help from you, I am not really good at Dynamic programming and there's a problem that's eating my head for a long time, could you please please please solve it and make me understand?
The problem is "Faffa and The Ancient Mathematician" from Code forces.
There an explanation of the problem by Rachit Jain on UA-cam but I didn't get the multiple DP going on in parallel. Please help me, coz there's none to guide me! Thanks! :)
@@vibekdutta6539 haha um, I'm pretty busy, I'd love to but don't think I can make the time today
2021 and your explanations still helps, a lot. thank you so much! gonna binge on your vids and hopefully it helps my journey throughout this CS major :')
This channel made me love algorithms again
ye
I really felt the "move on" at 7:37.
Btw, really helpful video!
why is this guy better than the lecturer in my course that I paid $2.2k for?
im not sure
I like your videos even before starting .. that's how much I like your content..keep making this kind of videos pls :)
ok
It is really much helpful and good then our professor lectures
thx
Really thanks for the detailed explanation, this video solved my questions watching Wiki of Quicksort
Happy Holidays 🎉 Haha Thank you for your kind words! We'd love to offer you a 40% Off our exclusive lifetime membership just use the code CHEER40 - backtobackswe.com/checkout?plan=lifetime-legacy&discount_code=CHEER40
This is so well presented. Instant subscribe. Thanks man.
You helped me survive an algo class 💯
If i could like this 100 times i would 😩omg best video on youtube about quicksort! I literally have watched all lol thank you for making these videos
ye
Thank you so much! You're a genius in your explanation way
man I love your videos, your teaching skills are amazing!
YOU ARE HAVING AN IMMENSE IMPACT. AND THANKS FOR IT!!!
thanks haha
At 10:38, you say that it doesn't matter where i starts; as far as I saw the algorithm says it's got to start at start - 1, which de facto makes all the passes in the first iteration to swap i with j, but all instances of i and j are equal (that's cause you increment the i before the swap), or the condition about array[j]
ok
Yet another great video. Where were you when I was learning this stuff in undergrad? :-)
In middle school I think...near corn fields 🌽🌽
Hello. I have a question. Im 10:25 and i dont understand why the complexity in this case is 0(n^2) . It should not be n! ? Because there are n-1 steps , n-2 steps , n-3 ... 1 ?
Was this for worst case?
@@BackToBackSWE yes . But i continued to watch this and i understood.
Because there are n + (n-1)+...+1 and this is the gauss sum
at 2:13 what are the inputs? A is the data array, l is what, and r is what? is this executed in a loop?
I dont rememebr the code
Back To Back SWE what about the concept of what l and r are
the best teaching technique
Congrats for 10k!
Thank you *smile*
Dude, you're gifted! Thanks so much for helping us to get our dream jobs :D
sure
Hello, where did you go? Why you are not uploading new videos? You are a great teacher
I love your videos! Keep up the good work!
dude (or i should call you sir ) thanks for this highly valuable content with great video and audio quality
dude's fine
Any new videos? Your explanation is so good!
Subscribed! Very good explanations, please continue doing what you do.
thx
The example at 11:00 can be more helpful if it has a number in the first half that is greater than the pivot, for example [3, 8, 4, 5, 9, 7] and pivot is 7. when i = 0, j = 1, we don't do the swap since 8>7, then j becomes 2 and based on your description we swap 3 and 4? What about 8 in between them? It should not stay where it is
ok
the 8 is going to get pushed back
At 14:08, why did you swap your pivot with the i+1 value?
I don't remember the specifics of this video - sorry im fast replying to comments. Hard to manage granular video details anymore
the i value would be less than the pivot, and the i + 1 would be greater than the pivot, so he swapped the pivot with i + 1 so that the pivot would be in its final spot, and the less and greater values can then be sorted separately using recursion.
best explanation on quick sort !!
thanks
Does this implementation use the Hoare partition scheme?
im not sure what that is
@@BackToBackSWE Thanks for this video and for replying. I don't know what it is either, which is why I asked. Apparently there are two common ways to partition: Lomuto's way or Hoare's way. en.wikipedia.org/wiki/Quicksort#Hoare_partition_scheme
No. This one is Lomuto's partition scheme when you have two pointers (i and j) starting from the beginning.
Hoare's partition is when we have two pointers: one starts from the beginning, second starts from the end.
Looks like Hoare's partition is more preferable cause it makes 3 times less swaps than Lomuto's in average.
cs.stackexchange.com/questions/11458/quicksort-partitioning-hoare-vs-lomuto
www.geeksforgeeks.org/hoares-vs-lomuto-partition-scheme-quicksort/
I asked myself the same question because there are different ways of quick sort implementation and they really differ. So it was a bit confusing for me at first why I see the same algorithm and different ways to implement it.
@@snoopaku Thanks!
Love the video, but isn't there a more optimized way to implement quick sort? In the code, it always picks the last item as the pivot, which is some cases with large inputs, it will timeout.
You are a real man
im normal
6:10
"what does i do?" - me trying to learn DS&A before @Back To Back SWE
Every other video I have seen so far avoids the worst case. Quicksort is relatively easy except for when you have a 1 or a max val.
Buddy I love your videos, thanks a lot
You're so cool ! Thank you for your videos, now I'm more confident about passing my exam :)
nah ur cool
Very nice explanation. Thank you!
Does anyone understand how 17:32 worked? I would have thought the summation would be the sum n-i from i=1 to n-1. This is due to the pattern of seeing n-1, n-2 , n-3 on each level and needing to add them all together
This seems to be a mistake but I don't remember the math from this video too much. I was going straight from notes I took before the video so not sure what I was on about. It still would be quadratic comparisons: imgur.com/a/MWQOBkd. Can you affirm this was a mistake? Then I can update the pinned note to point it out. Thanks!
@@BackToBackSWE No problem at all, so sorry for the late response was so deep into algos study that I never looked at UA-cam until I finished my exam yesterday! The maths checks out. If you think about it the sum of (n-i) for i incrementing all the way to n does just equal the sum of i. For instance, let n be 5 and i = 0 and lets follow the (n - i = val) format. (5 - 0 = 5) + (5 - 1 = 4) + ... + (5 - 4 = 1) Which is the same as 0 + 1 + ... + 5. I hope that cleared that up, thanks for making this content, I absolutely love your videos and will continue to subscribe even beyond algos class :)
wow how are u crystal clear man
thx
great video. Could you please make a video for Subset Sum Problem (Print all subsets with given sum) Dynamic Programming?
maybe