i wasn't able to wrap my head around why we need to take the min, but glad you explained it! Thank you
@IDeserve2 жыл бұрын
😊
@piyush121218 жыл бұрын
Great solution. One of my friends got same question in his Microsoft Interview. He solved it by brute force though and got selected as well.
@IDeserve8 жыл бұрын
+Piyush Chaudhary That was quick! We had uploaded the video just few minutes back :) Please convey congratulations from IDeserve Team to your friend for being selected in Microsoft :) And thanks for your words! We would really appreciate if you could spread the word about IDeserve in your college and to your colleagues. Thanks, -Team IDeserve.
@ChandraShekhar-by3cd4 жыл бұрын
Best Explanation Ever on this. Thanks a lot for making such a crystal clear explanation.
@IDeserve4 жыл бұрын
Thanks Chandra!
@naveenmarikar48298 жыл бұрын
You explained it in a way that anyone can understand. Really hats off guys . Great job. Please keep it coming.
@RajatSharmatonystark8 жыл бұрын
Very nice and concise solutions to all Dynamic programming problems.Thank you sir.
@IDeserve8 жыл бұрын
+Rajat Sharma Thanks a lot for your words! We are striving hard to make understanding algorithms easier. We would really appreciate if you could spread the word about IDeserve in your college and to your colleagues. Also please check out our website at: www.ideserve.co.in It has features like algorithm visualizations, learn together and many more coming soon. Please check it out and leave us a comment there! Thanks, -Team IDeserve.
@Saravanakumar-rn8fw8 жыл бұрын
solution is narrated in so simple and clear way.. Thanks for the video..!
@IDeserve8 жыл бұрын
+Saravana Kumar B Thanks a lot for your words! We are striving hard to make understanding algorithms easier. We would really appreciate if you could spread the word about IDeserve in your college and to your colleagues. We hope you have already checked out our website: www.ideserve.co.in :) Thanks, -Team IDeserve.
@robertsedgewick12664 жыл бұрын
Great explanation. Other channels also tried to cover the same approach, but your explanation and delivery w the apt use of visual illustration made it much easier to understand.
@IDeserve4 жыл бұрын
Thanks Robert!
@aayushit15133 жыл бұрын
Thank you so much! Your videos really help as they not only give the solution but also explain the intuition behind it!
@IDeserve3 жыл бұрын
Thanks Aayushi!
@vishalpolley35085 жыл бұрын
3:00 The algorithm step 2. c). should be table[i][j] = min (table[i-1][j], table[i-1][j-1], table[i][j-1]) + 1
@ShivamSingh-me1nb4 жыл бұрын
Excellent explanation of this problem
@IDeserve4 жыл бұрын
Thanks Shivam!
@IDeserve8 жыл бұрын
Dear Friends, If you like our content and would like us to continue making great content for you, please spread the word about IDeserve. A share/appreciation from you on social network would mean the world to us! Also, do like our Facebook page: facebook.com/IDeserve.co.in :) Thanks, -Team IDeserve.
@abhishekjaiswal64923 жыл бұрын
great explanation bhaiya, clear crystal explanation
@IDeserve3 жыл бұрын
Thanks Abhishek!
@Andrea-rq8yo4 жыл бұрын
Really nice explaination!
@IDeserve4 жыл бұрын
Thanks Jun!
@saivasanth88193 жыл бұрын
Best explaination, great work , thanks a ton :)
@IDeserve3 жыл бұрын
Thanks Sai!
@agniswarbakshi57658 жыл бұрын
Wonderful explanation with examples ! :) Would really appreciate if some software design questions are also discussed which are often asked in interviews !
@IDeserve8 жыл бұрын
Thanks a lot for your words Agniswar :) We are striving hard to make understanding algorithms easier. We would really appreciate if you could spread the word about IDeserve in your college and to your colleagues. Also please check out our website at: www.ideserve.co.in It has features like Algorithm Visualization, Learn Together and many more coming soon. Please check it out and leave us a comment there! Thanks, -Team IDeserve.
@kingshukjana47187 жыл бұрын
Videos are too good.. I dont find any other website having such great videos..
@IDeserve7 жыл бұрын
Thanks Kingshuk for your kind words :) If you would like to request a new video, here is the process: kzbin.info/www/bejne/aZe0fYKcqrKZopI We would really appreciate if you could spread the word about IDeserve in your college and to your colleagues. Thanks, -Team IDeserve.
@prathyusharaman83922 жыл бұрын
Tq sir you explained neatly....
@IDeserve2 жыл бұрын
Thanks Prathyusha!
@Aryan-wv6qe7 жыл бұрын
Your explanations are really helpful for us. Please upload the videos of left problems which are there on your website.
@IDeserve7 жыл бұрын
Thanks Raj for your kind words :) Here is the process for requesting new videos: kzbin.info/www/bejne/aZe0fYKcqrKZopI We would really appreciate if you could spread the word about IDeserve in your college and to your colleagues. Thanks, -Team IDeserve.
@surathsrivastva67274 жыл бұрын
Keep on making new videos regularly .
@IDeserve8 жыл бұрын
+Naveen Marikar Thanks you so much for your kind words! We would really appreciate if you could spread the word about IDeserve in your college and to your colleagues. We hope you have already checked out our website: www.ideserve.co.in :) Thanks, -Team IDeserve.
@MrRastoginitin018 жыл бұрын
very nice video...concept clearly explained...can we have more tutorials on Order Statistics?
@IDeserve8 жыл бұрын
+Nitin Rastogi Thanks a lot for your words! We are striving hard to make understanding algorithms easier. We will soon come up with tutorials on the requested topic and will intimate you. We would really appreciate if you could spread the word about IDeserve in your college and to your colleagues. Also please check out our website at: www.ideserve.co.in It has features like algorithm visualizations, learn together and many more coming soon. Please check it out and leave us a comment there! Thanks, -Team IDeserve.
@thatoneguy9085 жыл бұрын
at 3:06 it should be --> c: else table[i][j] = min(table[i - 1][j - 1], table[i - 1][j], table[i][j - 1]) + 1;, i got confused for much time!
@pranithakandimalla63593 жыл бұрын
Thanks a lot!!!
@reassume48264 жыл бұрын
Thank You.
@saicharan86754 жыл бұрын
Dude thank you
@IDeserve4 жыл бұрын
Thanks Charan!
@11m08 жыл бұрын
How did you know to take the min between all 3 numbers. What clued you into taking the minimum between all 3 and adding 1?
@PoonamYadav-dh6qz8 жыл бұрын
nice video, can you provide the solution for Maximum size rectangle matrix with all 1s as well?
@IDeserve8 жыл бұрын
+Poonam Yadav Thanks a lot for your words! As per your request, we will soon come up with an article on the requested problem. We would really appreciate if you could spread the word about IDeserve in your college and to your colleagues. Also please check out our website at: www.ideserve.co.in It has features like algorithm visualizations, learn together and many more coming soon. Please check it out and leave us a comment there! Thanks, -Team IDeserve.
@kamalsmusic8 жыл бұрын
How are we supposed to come up with this in a interview? It seems hard especially during a phone interview :(
@BullsEye2.08 жыл бұрын
It really helped.... excellent work... keep it up :)
@IDeserve8 жыл бұрын
Hello Father :D Thanks for your kind words :) We would really appreciate if you could spread the word about IDeserve in your college and to your colleagues. Thanks, -Team IDeserve.
@shubhammishra30125 жыл бұрын
In else condition you have to do table[i][j]=min(table[i-1][j],table[i-1][j-1],table[i][j-1])+1
@JigarShah28117 жыл бұрын
Great video!
@IDeserve7 жыл бұрын
Thanks Jigar for your kind words :) We would really appreciate if you could spread the word about IDeserve in your college and to your colleagues. Also please check out our website at: www.ideserve.co.in It has features like Algorithm Visualization, Learn Together and many more coming soon. Please check it out and leave us a comment there! Thanks, -Team IDeserve.
@shubhamvardaan35768 жыл бұрын
Simply awesome .:):):):)
@IDeserve8 жыл бұрын
Thanks Shubham for your kind words :) We are striving hard to make understanding algorithms easier. We would really appreciate if you could spread the word about IDeserve in your college and to your colleagues. Also please check out our website at: www.ideserve.co.in It has features like Algorithm Visualization, Learn Together and many more coming soon. Please check it out and leave us a comment there! Thanks, -Team IDeserve.
@vijaysahani15156 жыл бұрын
how to solve this problem with at most 1s ????
@tushargoel55225 жыл бұрын
solution is fine but how do u approach this solution? I think that's more imp than the solution itself.
@cbest36784 жыл бұрын
@Tushar Goel..I agree .. many people just put video content based on someones solution either in book or leetcode. .. they make video out of it.. without telling how the thought process started. Because thought process matters in interview and also help your brain develop in that direction....since today we know the solution for this problem if some other problem comes ... we will get hard time to come up with optimal solution.
@soumavanag50257 жыл бұрын
Too good!! :)
@IDeserve7 жыл бұрын
Thanks Soumava for your kind words :) If you would like to request a new video, here is the process: kzbin.info/www/bejne/aZe0fYKcqrKZopI We would really appreciate if you could spread the word about IDeserve in your college and to your colleagues. Also please check out our website at: www.ideserve.co.in It has features like Algorithm Visualization, Learn Together and many more coming soon. Please check it out and leave us a comment there! Thanks, -Team IDeserve.
@shibajipaul5 жыл бұрын
at 2:52, the logic in 2, in the else part is wrong, it should not be table[i][j] = min(matrix[i-1][j], matrix[i-1][j-1], matrix[i][j-1]) + 1, but should be: table[i][j] = min(table[i-1][j], table[i-1][j-1], table[i][j-1]) + 1.
@JimitRupani8 жыл бұрын
how value in the second matrix at (3,2) = 0 as you can apply min(three values)1 = value(3,2). when all those value are 0,0,1 so it should be 1.
@IDeserve8 жыл бұрын
+Jimit Rupani Could you please point out the exact time-stamp in the video where you have doubt?
@Wumbolo8 жыл бұрын
those values are not 0,0,1. the values are of DP not matrix