3097. Shortest Subarray With OR at Least K II | Sliding Window | 2 Pointers | Bit Manipulation

Поділитися
Вставка
  • Опубліковано 20 гру 2024

КОМЕНТАРІ • 25

  • @kafuu1
    @kafuu1 6 місяців тому +3

    you are such a genius! I wish I can be as smart as you one day!

  • @IK-xk7ex
    @IK-xk7ex 8 місяців тому +5

    I solved it by myself yesterday!

  • @AyushGupta-rf7vu
    @AyushGupta-rf7vu Місяць тому +3

    Bro, loved your confidence and your approach was crazy🔥🔥

  • @ekanshgupta2930
    @ekanshgupta2930 8 місяців тому +8

    hnoest question how do you think of such approaches while the contest itself even if I was given like 10 days to solve this I wouldn't have thought of an approach like this one

    • @mmbmmbmmb
      @mmbmmbmmb 8 місяців тому +4

      mera toh 3rd yr khatam hone ko aya hai abhi bhi nhi hua

  • @abishekupadhyay6357
    @abishekupadhyay6357 8 місяців тому +2

    bro many many thanks to you. apne iss week 2 pointer itni ache se explain kiya ki i got this one almost instantly during the contest. You are amazing bhai.

    • @akuma_168
      @akuma_168 8 місяців тому

      got stuck in removing OR value from starting pointer. I just suck at bit manipulation.

    • @Anonymous____________A721
      @Anonymous____________A721 5 місяців тому

      @abhishek pls share your profile or your solution link
      I am unable to understand any code

  • @chase.2595
    @chase.2595 8 місяців тому +3

    aryan mittal legend

  • @10minutes_cs
    @10minutes_cs Місяць тому

    12:43 remove the contribution of OR

  • @harchitgulati3065
    @harchitgulati3065 Місяць тому

    nice approach ! understood it

  • @rahulsomani6084
    @rahulsomani6084 Місяць тому

    nice video bro 🤯

  • @TON-108
    @TON-108 4 місяці тому

    Badhiya bhai 👏👏

  • @Nutrino259
    @Nutrino259 2 місяці тому +1

    God Aryan!!!!

  • @priyanshkumar17
    @priyanshkumar17 6 місяців тому

    Thanks, great explanation

  • @shivamgurjar8979
    @shivamgurjar8979 6 місяців тому

    brilliant solution

  • @devanshsengar1877
    @devanshsengar1877 8 місяців тому

    very helpful bro

  • @k.satish3663
    @k.satish3663 8 місяців тому +7

    sliding window marathon

    • @chase.2595
      @chase.2595 8 місяців тому +1

      yeah even daily problems are of sw

  • @tzuilee588
    @tzuilee588 8 місяців тому +3

    Well explained and nice test case walk-through man!
    Just a small suggestion: you're adding too much drama in your facial expressions on camera, kind of distractive lol

  • @mmbmmbmmb
    @mmbmmbmmb 8 місяців тому

    BRO ISSE NAHI HOSAKTA KYA
    #define ll long long
    #include
    using namespace std;
    class Solution {
    public:
    int minimumSubarrayLength(vector& nums, int k) {
    mapmp;
    int n=nums.size();
    ll ans=1e8;
    for(int i=0;i=k)return 1;
    ll x=nums[i];
    ll count=1;
    for(int j=i+1;j=k){
    ans=min(ans,mp[{i,j}]);
    }
    }
    }
    if(ans==1e8){
    return -1;
    }
    return ans;
    }
    };

  • @prakashnandan7337
    @prakashnandan7337 8 місяців тому

    Thanks Aryan

  • @pasuvulamaheshbabu9845
    @pasuvulamaheshbabu9845 Місяць тому

    Bro,waste of time