love the way u make everything easier when i practice on leetcode i just watch 2 channels: ur channel and neetcode. Thanks a lot
@SoumojitKoley-sd5je Жыл бұрын
thanks for the explanation, you are great, great approach and great solution, really appreciated.
@jkali-pg4fh2 жыл бұрын
Very good explanation. Thank you Alisha!
@nikhil885410 ай бұрын
Supper explaintion, never understood any solution so fast.
@samridhshubham8109 Жыл бұрын
Beautifully explained.
@raj_kundalia2 жыл бұрын
Amazing, thanks for the video!
@bharathg3174Ай бұрын
Good explanation 🎉❤
@vinaykenguva3623 жыл бұрын
nice explaination. can u explain the problem where movement is possible from all 4 directions but revisit isnt allowed
@Zedxwhy Жыл бұрын
Declare vector of vectors initially all grid value 1 for loop start with I and j for column dp I and j is equal to I minus 1 and j and same j minus 1 returns because last node
@SomneelMaity2 жыл бұрын
Great Explanation. Thanks Mam.
@pankajchadda1780 Жыл бұрын
Thank you for this wonderful explanation😄
@vyankateshkulkarni43742 жыл бұрын
thanks for such a wonderful explanation
@reshmaparveen66793 жыл бұрын
V useful explain tq so much 👍
@Jai-Shree-Ram715 Жыл бұрын
Great explaination
@dhairyashiil2 жыл бұрын
Thank You! , Nice video as always : )
@kasthurishravankumarhpc Жыл бұрын
Great explantion
@gokulnaathbaskar9808 Жыл бұрын
Thank you so much, it was so good!
@bhooviarora5198 ай бұрын
Amazing
@himanshushorts71437 ай бұрын
very nice explain
@tusharnain66522 жыл бұрын
This can be more optimized!
@user-sz6sr6ql3l Жыл бұрын
Great
@005_adarshprajapati9 Жыл бұрын
mam plz do space optimization too. super explanation
@Idukhan-jj9kc3 жыл бұрын
Tq so much 💖
@vamshidharsingh55492 ай бұрын
time and space complexity
@bhooviarora5198 ай бұрын
Vector of vector mai(n,1) ka kya meaning
@piyush27502 жыл бұрын
3 suggestions : 1. At the end please mention the time complexity and space complexity 2. Can we start from recursion and then memorization and then dp solution . In this way , we can prove why we are using dynamic programming for this solution ( as we can see overlapping problem while drawing recurrence tree ) 3. Currently we are using 2 D matrix (dp) to store the ans . We can optimise it to two 1 D matrix as we only need previous row and current row