you are such a genius! I wish I can be as smart as you one day!
@AyushGupta-rf7vu9 күн бұрын
Bro, loved your confidence and your approach was crazy🔥🔥
@IK-xk7ex7 ай бұрын
I solved it by myself yesterday!
@ekanshgupta29307 ай бұрын
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
@mmbmmbmmb7 ай бұрын
mera toh 3rd yr khatam hone ko aya hai abhi bhi nhi hua
@abishekupadhyay63577 ай бұрын
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_1687 ай бұрын
got stuck in removing OR value from starting pointer. I just suck at bit manipulation.
@Anonymous____________A7214 ай бұрын
@abhishek pls share your profile or your solution link I am unable to understand any code
@harchitgulati30658 күн бұрын
nice approach ! understood it
@chase.25957 ай бұрын
aryan mittal legend
@rahulsomani60848 күн бұрын
nice video bro 🤯
@priyanshkumar175 ай бұрын
Thanks, great explanation
@TON-1083 ай бұрын
Badhiya bhai 👏👏
@shivamgurjar89795 ай бұрын
brilliant solution
@Nutrino259Ай бұрын
God Aryan!!!!
@10minutes_cs8 күн бұрын
12:43 remove the contribution of OR
@k.satish36637 ай бұрын
sliding window marathon
@chase.25957 ай бұрын
yeah even daily problems are of sw
@tzuilee5887 ай бұрын
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
@devanshsengar18777 ай бұрын
very helpful bro
@mmbmmbmmb7 ай бұрын
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; } };