Good explanation. Please do more videos on Leet Code problems. Appreciate your efforts !
@astronaut222 жыл бұрын
your teaching is good, I wached so many videos but dont understand about last part. But from your video I got that. keep it up and thanks
@nikoo282 жыл бұрын
Thanks for your kind comment :)
@shuwenzhao51262 жыл бұрын
Thanks! After watching many videos, finally find one I can understand....
@nikoo282 жыл бұрын
So happy you found it useful :)
@prathijathiruppathy9852 жыл бұрын
Thank you for teaching this. You are doing a great job.
@amanprajapati34172 жыл бұрын
your explanations is the best sir you deserve more followers ♥♥♥♥♥♥♥♥♥♥♥ Thanks for the video sir
@nikoo282 жыл бұрын
Thanks for the lovely comment.
@sandeepnarwal8782 Жыл бұрын
I love your talking speed ❤😊 it really helps to understand the solution
@nikoo28 Жыл бұрын
so happy to read this :)
@everyontech2716 Жыл бұрын
Last approach gives TLE. time lime execced. Code :- class Solution: def searchInsert(self, nums: List[int], target: int) -> int: l = 0 h = len(nums) - 1 while(l target : h = mid -1 else: l = mid +1 return l
@nikoo28 Жыл бұрын
try putting some print statements in your code to get the values of l, mid and h....that will help you. Most likely you are running into an infinite loop.
@everyontech2716 Жыл бұрын
@@nikoo28 yes it works. Thank you so much
@Princyy3 ай бұрын
Best in buisness, Thanks NIkhil
@pulastyadas33512 жыл бұрын
best explanation sir... i have ever followed. please keep continue
@tejasdonadkar352 Жыл бұрын
i think there is some error at timestamp 12:02 high = mid -1 and mid = 2 so high should be 2-1 = 1 but you wrote 2
@nikoo28 Жыл бұрын
you are correct. I missed some values while doing the dry-run, but the code works for sure.
@samsulalam38489 ай бұрын
yes i also found the same
@arshuarshad15519 күн бұрын
i really confused that because of
@yelururao1 Жыл бұрын
greate explantion bro..
@mikedelta65810 ай бұрын
Thank you!
@neeraj195410 ай бұрын
thank you🥰
@khushuu5802 Жыл бұрын
Awesome explanation 🙂
@thekannadacoder81342 жыл бұрын
thank u sir
@xiaoyuli60082 жыл бұрын
Thanks.
@erey27902 жыл бұрын
Thank you for the content
@nikoo282 жыл бұрын
Always welcome 😄
@CodeOs52 жыл бұрын
teacher we want at our colleges
@DhundupTseringOfficial Жыл бұрын
this code at the end doesn't pass the leetcode pre tests though...
@nikoo28 Жыл бұрын
Check the code in the video description :)
@DhundupTseringOfficial Жыл бұрын
@@nikoo28 yeahh my bad it works, my while() condition was while(low!=high) but you had low