Number of Increasing Paths in a Grid II DFS II DP II Graph II Recursion II Leetcode 2328

Sdílet
Vložit
  • čas přidán 27. 07. 2024

Komentáře • 16

  • @ARYANMITTAL
    @ARYANMITTAL  Před rokem +4

    Code & Notes: drive.google.com/file/d/1G9zMf2HrRRZbpVbHiqLOpbSFrtWtFvYo/view?usp=sharing
    Today's Live Contest Discussion might not come, Not feeling well 🥲. But I will try my best

    • @madhavgupta2002
      @madhavgupta2002 Před rokem

      if live isnt possible, kindly provide solutions as per ur convenience if possible

  • @user-nm1wq1rk9n
    @user-nm1wq1rk9n Před rokem +7

    perfect length

  • @mukulkhanna5071
    @mukulkhanna5071 Před 3 měsíci

    today i was drunk but your video motivated me to do the problem and finally i did it, omg hat's off to you bruh😂😂😂😂😂😂

  • @VivekYadav-ds8oz
    @VivekYadav-ds8oz Před rokem +2

    Classic textbook DP problem. I think this should be a good testing problem once you've learned very basic DP.

  • @sureshchelani7497
    @sureshchelani7497 Před rokem +1

    Thanks 😊

  • @thisismrsanjay
    @thisismrsanjay Před rokem

    very nice thanks

  • @ms-ej4gd
    @ms-ej4gd Před rokem

    Quality content and clear explanation. Subscribed

  • @ashishdhal4614
    @ashishdhal4614 Před rokem

    This was so smart man loved the problem especially memoization part

  • @tejaspatel2212
    @tejaspatel2212 Před rokem +1

    keep all videos around 15-17 min long max

  • @sawanchakraborty8596
    @sawanchakraborty8596 Před 11 měsíci

    class Solution {
    public:
    int mod=1e9+7;
    int delrow[4]={1,-1,0,0};
    int delcol[4]={0,0,1,-1};
    int countPaths(vector& grid) {
    int m=grid.size();
    int n=grid[0].size();
    //{vector,{i,j}}
    queueq;
    unordered_mapmp;
    for(int i=0;i

  • @rohithdon2621
    @rohithdon2621 Před rokem

    hai Aryan I had doubt how you saying by seeing constraints it wont work like in this said 1e5*1e5 wont work ..

  • @justajay2228
    @justajay2228 Před rokem

    Live stream??

  • @kamla2620
    @kamla2620 Před rokem +1

    No need to put so many mods, we should put only where needed

  • @aadarshsonkar5170
    @aadarshsonkar5170 Před rokem +1

    Explanation becomes cringy when you start doing some nonsense. Try to keep it simple bruh!