Xor pehli baar dhang se samajh aaya h , thanks brother 😊😊
@shbaadАй бұрын
Great Explanation of leetcode problems.You are the only youtuber from which i can understand the leet question solutions. Keep it Up ♥
@AmeyaKherodkar8 ай бұрын
One of the best videos for this problem and logic explanation. Kudos ✌
@ce132_sonugupta97 ай бұрын
xor solution explanation is nice🙃🙃
@raju_bugude3 ай бұрын
best expalnation so far in youtub regarding this topic/problem.
@nibeditadas41824 ай бұрын
Great explanation , need more such videos on different Leet code problems.
@rachitkatariya6 ай бұрын
Bahut accha padhaye ho bhaiyaa aap.🫂❤
@arundhuti41014 ай бұрын
If we add all the nums in the range and then also add the nums in the given array and subtract the sums. we would get the required answer. Wouldn't this be the most efficient way for a brute force method? btw wonderful explanation, thanks!
@ayushipawar95423 ай бұрын
Yeah it will definitely work but we need optimized code...
@everyontech2716 Жыл бұрын
This is one of the best explained video for this problem
@priyakoli55727 ай бұрын
You explained so well then others
@walkwithAziz20245 ай бұрын
Thanks excellent explanation Xor how use in this solution
@HistoryHouse45 Жыл бұрын
sir can you make video on another part of this problem(repeat and missing number)
@nikoo28 Жыл бұрын
let me check it out.. :)
@satyamgupta6030 Жыл бұрын
what an excellent explaination bhaiya . Thanks for making such amazing videos for we student. I always look for ur videos whenver I search a problem on yt.
@nikoo28 Жыл бұрын
So nice of you
@AvinashSingh-tr5vt Жыл бұрын
Thank you very much for the wonderful explanation 😊
@businessmotivationspot Жыл бұрын
Hey man! your explanation skills are excellent.
@nikoo28 Жыл бұрын
Glad you like them!
@vishnulavudya31606 ай бұрын
the best explanation
@sarveshkuthe62837 ай бұрын
What if we use the freq array approach and find max element in array and create the freq array of that size and then increase the index, we can check if the index is 0 then that’s the missing number ?
@sumitprasad40627 ай бұрын
Sir your explanation is awesome ♥♥♥
@jameshuddle47128 ай бұрын
Nice! The xor really capped it. Thank you! (I couldn't resist...) missing = arr.reduce((t,v,i) => t ^ v ^ i, arr.length);
@zillboy9 ай бұрын
Amazing explanation, thanks 👍
@jjoelthomas9 ай бұрын
Great explanation!!!
@klyucherov.e Жыл бұрын
Спасибо индусу за туториал 👍
@nikoo28 Жыл бұрын
you are welcome
@nobelcoding4 ай бұрын
Very nice explanations
@anudey8496 Жыл бұрын
like your solution! thanks
@souleymen971 Жыл бұрын
Thank you you help me so much
@nikoo28 Жыл бұрын
I'm so glad!
@kunalkheeva Жыл бұрын
Hey Nikhil I love your content, do you have any plans for collabs? Like live problem solving and whatnots?
@nikoo28 Жыл бұрын
glad you liked my content. Yep...I have plans for collabs and live sessions when the time is right :)
@kunalkheeva Жыл бұрын
@@nikoo28 or provide me your insta account I will dm you.
@nikoo28 Жыл бұрын
@@kunalkheeva you can email me on the address provided in the channel description :)
@priyabratapadhi24216 ай бұрын
how this "xor " solution can't pass test case
@riya_17237 ай бұрын
The best one 😊
@mikedelta65810 ай бұрын
Thank you.
@gd246447 ай бұрын
thank you so much
@pavankumarpadamati860610 ай бұрын
good explanation bro..
@professormoriarty7439 Жыл бұрын
Is bit manipulation important for interview??
@nikoo28 Жыл бұрын
to be honest, it is very unlikely that you will get tough bit manipulation questions during an interview. You are just expected to know the basics, like what is left shift, what is right shift, XOR etc. As an interviewer, I would never ask a programming problem whose solution relies on a bit manipulation technique.
@ghub19719 ай бұрын
thank you sir
@keshav95416 ай бұрын
great bro
@Mosesdaniel774 ай бұрын
🎉Good
@vamshisundupalle6141 Жыл бұрын
can u give the brute force solution pls
@nikoo28 Жыл бұрын
have you tried writing some code?
@vamshisundupalle6141 Жыл бұрын
@@nikoo28 I tried but I can't got it
@abhasthakur367 ай бұрын
Bruteforce ka code send krdo
@nikoo287 ай бұрын
You don’t need the code for brute force method
@harikumarv50099 ай бұрын
awsome brother🥸
@chitra_13 Жыл бұрын
0,1 ka kese niklega iss approch se
@nikoo2811 ай бұрын
What do you mean?? Please elaborate a little
@demonders548610 ай бұрын
😅😅😅😅😅😅😅
@RameshGaridapuri6 ай бұрын
// Online C compiler to run C program online #include int main() { int arr[] = { 1,5, 9, 100 }; int m = 0; int size = sizeof(arr)/sizeof(int); for (int i = 0 ; i< size ; i++) { for (int j = m+2 ; j < arr[i+1]; j++) { if ( arr[i] != arr[j]) { printf(" %d", j); } m = j ; } printf(" "); } }