way of teaching is mind-blowing God bless u, dear.
@johndoe-cq3de3 жыл бұрын
You could use a sliding window technique.. It passed all test cases.. This is in JS let left=0 let count=0 let res=Number.MAX_VALUE for(let i=0;ix){ res=Math.min(res,i-left+1) count-=a[left++] } } return res
@AyushiSharmaDSA3 жыл бұрын
Thanks for sharing js code🙂
@johndoe-cq3de3 жыл бұрын
@@AyushiSharmaDSA you're welcome 🙂
@biikaaa.65403 жыл бұрын
@@johndoe-cq3de what the hell is 'x'
@imshivendra2 жыл бұрын
@@AyushiSharmaDSA is javascript code is allowed in interview? I don't think so.
@Nitian_Trader07 Жыл бұрын
@@biikaaa.6540 question mai dekh dhyan se bhai
@fatehpreetsingh14402 жыл бұрын
your videos are solving all my doubts,really thanks
@AyushiSharmaDSA2 жыл бұрын
Welcome Fatehpreet, glad they are helpful :)
@tusharjeena70812 жыл бұрын
best way of teaching
@AyushiSharmaDSA2 жыл бұрын
🤗🥹
@garvitakbasantani55022 жыл бұрын
You explain so well!!!
@AyushiSharmaDSA2 жыл бұрын
Thanks Garvita :)
@ANUJ-we3su3 жыл бұрын
You are doing such a great work thanks mam.
@AyushiSharmaDSA3 жыл бұрын
Thank you :). Keep supporting and please share with your friends and juniors :)
@arshadansariv2 жыл бұрын
Didi your voice is choooo chweet☺🥰🤗🖤
@AyushiSharmaDSA2 жыл бұрын
Thank you Arshad :)
@mrinalmadhav81193 жыл бұрын
Mam Walmart ko ctc kitti hai
@022_ananyasrivastava82 жыл бұрын
Outstanding
@AyushiSharmaDSA2 жыл бұрын
Thanks Ananya😊
@varunajmera2 жыл бұрын
why we do not count while complexity? @ayushi
@hackercoder88472 жыл бұрын
didnt got time complexity part
@TekaneChaitanya3 жыл бұрын
Please also explain java code if possible, it will be very helpful
@AyushiSharmaDSA3 жыл бұрын
I will try :)
@soumachatterjee93992 жыл бұрын
Why not 45 + 19 > 51 ? Why not [45, 19] can be the smallest sub aaray ?
@04.nehalsingh122 жыл бұрын
No we can't do this because in question it is mentioned a subarray and subarray is continuous we can't choose random element subarray means a continuous part of array
@artishsharma78592 жыл бұрын
Dude you have to add 51+0 not 55+0 check it: 4:20
@llo.welc_me2 жыл бұрын
didi time comlexity samajh nahi aye thoda sa help kar dijie na
@ecs185_shaileshbharti33 жыл бұрын
Reach ++; 👍👍
@imshivendra2 жыл бұрын
Didi ye video samajh nahi aayi . 1 baar aap is question ka dusri approach ya video bata sakti hain kya?
@Sonu-tg6tg3 жыл бұрын
if possible please explain code in java as well
@AyushiSharmaDSA3 жыл бұрын
I will try :)
@Electrocode_gk9 ай бұрын
if value not found it should return zero testcase failing dude
@shaniyadav91172 жыл бұрын
Your code will not run, if the test case is: 1 1 1 This test-case is the first test case at Date- 08/10/2022
@kirtimulchandani6652 жыл бұрын
Yes, we need to add another base case condition when we have a single element in the array. And if that element is greater than X, you will return 1 otherwise return 0.