Hi guys, I have not been well since yesterday evening. High fever and throat issue. Hence the video was delayed. I hope it helps. Thank you all for your love and support.❣❣❣
Bhai pehli 7-8 min me hi samaj me aa gaya solution kya mast batate ho aap! mene khud hi solve karliya pura video dekehe bina. bot simple solution tha! Thank you!
Thanks for your explaination!! I tried explaining the first approach to myself by looking at other solutions but was unable to. Was waiting since since morning for your explainer. Wishing you a speedy recovery ;)
Same. I watched Neetcode, Techdose and Aryan's video. couldn't completely get my doubts cleared. Then I always come to this channel and like always I could get the intuition during half of the video and coded it . Something is unique about him.
I bow to u for teaching us new things every single day U are biggest inspiration to become a great coder ✨✨ Thanks from the bottom of my 💓💓 POTD DONE [21.2.24]✅✅
Hi guys,
I have not been well since yesterday evening. High fever and throat issue.
Hence the video was delayed.
I hope it helps.
Thank you all for your love and support.❣❣❣
Thank you for such an Insane Consistency, You're Amazing 🙏
larry page real id se aao
Take care MIK
take care you health
Take care bhaiya :)
Bahiya bit manipulation pe bhi ek playlist bana do like recursion. 1 video per week is enough. 🙏🙏🙏🙏
Bhai pehli 7-8 min me hi samaj me aa gaya solution kya mast batate ho aap! mene khud hi solve karliya pura video dekehe bina. bot simple solution tha! Thank you!
Very well explained :) One of the better videos than all the other videos I have seen on this question. Thanks
2nd approach was awesome 👍🏻
Thank you sir 😊
Take care of yourself brother the season is changing I was also sick a while ago. And Thank you for the explanation as always!.
The way you are being consistent even after being sick gives me so much inspiration to be disciplined and keep going. Thank you.
Thanks for your explaination!! I tried explaining the first approach to myself by looking at other solutions but was unable to. Was waiting since since morning for your explainer. Wishing you a speedy recovery ;)
I have tried from side.
Then, I was waiting for your video for better understanding
Hats off to your dedication. and take care get well soon.
Nicely explained bhai❤
Thanks again for making this easy through your explanation ❤❤
😇❤️
Hore krishna. bhai you are just amazing. nice explanation. learned many things from this video.
I was waiting for you only. Thanks a lot
Get well soon ❤
Get well soon!
Thanks ❤❤❤❤
in first approach we r actually right shifting 32 bits at worst case right then tc will be o(32) only right we can call it as O(1) only instead
Perfect 👌
as usual sir you are amazing and your explanation is fabulous you never ever disappoint us
Thanks a lot bhaiya ❤❤ Hats of to your dedication making videos even when you are not well 🫡Get well soon 🙌
Thanks, waiting for bits series
Best explanation, Keep it up❤
Waiting for your video bro
hahaha i was waiting for this video from you, tho i already watched aryan mittal's video but i really like how you explain stuff so here again
Same. I watched Neetcode, Techdose and Aryan's video. couldn't completely get my doubts cleared. Then I always come to this channel and like always I could get the intuition during half of the video and coded it . Something is unique about him.
please share questions of similar pattern!!
2nd solution is quite nice but i dont think i will ever come up with that in an interview 😅
Thanks, Mik for your hard work, please bring BIT Manipulation Playlist first
I bow to u for teaching us new things every single day
U are biggest inspiration to become a great coder ✨✨
Thanks from the bottom of my 💓💓
POTD DONE [21.2.24]✅✅
Thanku bhaiya ❤
in first approach time complexity is o(1) beacause maximum bit in a integer is 32 any number we shift 32 times it becomes zero
Bhaiyaaa please bit manipulation ki playlist bana dijiya like recursion
your playlist is is verry useful
Bro can you tell me the name of application on which you use to explain the problems??
Why is always that my doubts are literally always cleared when I see your explanation. 😅
Please include backtracking and trees concepts and questions
LCP approach 👌
LCP ?
finallyy 🥳. thanks a lot
What is the TC of approach 2?
Recursion best use by your guidance.
class Tree{
public void serialize (Node root,ArrayListA){
if(root==null){
A.add(-1);
return;
}
A.add(root.data);
serialize(root.left,A);
serialize(root.right,A);
}
public Node deSerialize(ArrayListA){
if(A.size()==0) return null;
int a=A.remove(0);
if(a==-1) return null;
Node root=new Node(a);
root.left =deSerialize(A);
root.right=deSerialize(A);
return root;
}
}
🎉❤
we want Bit Manipulation Playlist!!!
bhaiya please make video on 289 Game of Life and 1499 Max Value of equation
Bhaiya pehle app lld Lao please and upp jaldi thik ho jao❤❤
In your dp series ,the climbing stairs and first house robber one is showing only of 6 second..please fix the issue
Check the description of those 6 second videos. It contains the link to the full video in a different playlist. I completed few days ago.
thanks@@ugcwithaddi
cout
Bhaiya aap kon si company me ho ?
Yes mik thanks a lot for system design , lld, oops
❤❤❤
did u solved this problem first time ??