find median in a data strem
28:17
Жыл бұрын
sliding window maximum
37:50
Жыл бұрын
power set bit manipulation
17:45
Жыл бұрын
Next Permutation LeetCode
25:44
2 жыл бұрын
First Missing Positive LeetCode
19:29
Sequential Digits | LeetCode 1291
14:53
Types of Graph Data Structure
4:03
2 жыл бұрын
Bubble Sort Algorithm
13:52
2 жыл бұрын
Пікірлер
@Manishbhaiya_rock
@Manishbhaiya_rock 8 күн бұрын
did not understand
@shariarislamtutul
@shariarislamtutul 26 күн бұрын
Please avoid trying to overdo your pronunciation. Instead, embrace your natural local accent in English and proceed confidently as you are.
@nothingidontknow6392
@nothingidontknow6392 Ай бұрын
Your accents are very good 👍🏻
@echobash
@echobash Ай бұрын
You are amazing. Gained a subscriber.
@ayazshakeeb
@ayazshakeeb 2 ай бұрын
y are u faking accent .
@alkman2k6
@alkman2k6 2 ай бұрын
much love from Greece!! when you come here i will be more than welcomed to have you to my house and spend time together coding in C language
@kundansaha4877
@kundansaha4877 3 ай бұрын
very very poor explanation
@Malayalam_learner
@Malayalam_learner 4 ай бұрын
I found this gem 💎 very late
@Drew0Ranger
@Drew0Ranger 5 ай бұрын
You are trying so hard to hide your Bengali accent with as much American as possible, I could not focus on your approach :)
@hipravwaghela6263
@hipravwaghela6263 5 ай бұрын
bhai normal english me bol le, foreign excent boche me dal...
@BarikZone
@BarikZone 5 ай бұрын
i left foreign accent. thanks bhai
@alextowers2153
@alextowers2153 5 ай бұрын
#@urtheshit_1 @allycatsssh @al.ex8156 @elusive @dukeoriginal
@abhaypandey2668
@abhaypandey2668 6 ай бұрын
speak in your original accent it makes things more easily understandable
@BarikZone
@BarikZone 5 ай бұрын
thank you
@ganeshjaggineni4097
@ganeshjaggineni4097 6 ай бұрын
NICE SUPER EXCELLENT MOTIVATED
@kellykim458
@kellykim458 6 ай бұрын
REALLY GREAT EXPLANATION - THANK YOU SO MUCHHHH
@Preethuma99
@Preethuma99 6 ай бұрын
Thanks🎉
@alexgoldendragon3435
@alexgoldendragon3435 6 ай бұрын
how about these arrays: [0,2,1] and [0,2,1]. I dont think your code work??
@guimaraesalysson
@guimaraesalysson 7 ай бұрын
Thanks for sharing this video, I finally understand the levenshtein algorithm
@mohammadyahya78
@mohammadyahya78 7 ай бұрын
Man you are amazing
@Code_G201
@Code_G201 7 ай бұрын
bro u dont have to do the accent man...
@BarikZone
@BarikZone 7 ай бұрын
Yes, you are right. I have changed my accent. Thanks for pointing out.
@ivanchl
@ivanchl 8 ай бұрын
Hi, I have a quesiton. Did you figure it out yourself that (R-L)/2 will cause overflow? Is this something everybody knows from Computer Science? Thanks! It is a very good explanation you have, more clear than others.
@ganeshjaggineni4097
@ganeshjaggineni4097 8 ай бұрын
NICE SUPER EXCELLENT MOTIVATED
@dipsrocx4028
@dipsrocx4028 8 ай бұрын
Bhai accent kyu badal raha hai.
@BarikZone
@BarikZone 7 ай бұрын
I'm trying to learn English, i'm improving day by day. Thanks for pointing out.
@ishikatailor
@ishikatailor 8 ай бұрын
Thanks.
@parichaysarkar3764
@parichaysarkar3764 10 ай бұрын
The way he said Thirty Two 🥴
@neerajgupta0005
@neerajgupta0005 10 ай бұрын
Not efficient, use mask to swap without using loop
@agustintorres2223
@agustintorres2223 Жыл бұрын
Good explanation and resolution code 👌
@tosha.e.t
@tosha.e.t Жыл бұрын
VERY CLEAR
@tarunmali6228
@tarunmali6228 Жыл бұрын
Subscribed!!! Best solution of this question on youtube
@ranjitprakash1986
@ranjitprakash1986 Жыл бұрын
What happened to your accent lol
@rohanmathews4913
@rohanmathews4913 Жыл бұрын
Bhai aise awaaz mai pure video kaise bol lete ho? Hume bhi tips do please.
@baladevtanmayatilakmohapat7877
@baladevtanmayatilakmohapat7877 Жыл бұрын
BC jabardasti kyun accent change kar raha hai bhai?? Gareebo ka Angrez BC
@wpraagavendran4758
@wpraagavendran4758 Жыл бұрын
you have to slightly change the code because this code doesn't work for string = "aa" , pattern = "*"; modified code for (int i = 0; i <= s_len; i++) { for (int j = 0; j <= p_len; j++) { if (i == 0 && j == 0) { dp[i][j] = true; } else if (i == 0) { if (dp[i][j-1] == true && p.charAt(j-1) == '*') { dp[i][j] = true; } else { dp[i][j] = false; } } else if (i != 0 && j == 0) { dp[i][j] = false; } else if (s.charAt(i-1) == p.charAt(j-1) || p.charAt(j-1) == '?') { dp[i][j] = dp[i-1][j-1]; } else if (p.charAt(j-1) == '*'){ dp[i][j] = dp[i][j-1] || dp[i-1][j]; } } }
@dimasadyaksa7444
@dimasadyaksa7444 Жыл бұрын
what if the input is [ 3, 3, 2, -1 ]
@muntazirhaider6252
@muntazirhaider6252 10 ай бұрын
return false
@souravjoshi2293
@souravjoshi2293 Жыл бұрын
Videos like these make people fall for "Tutorial Hell" - No intuition - No thought process - Why stack ??????? - Why traverse from back of the array ???? Waste of time.
@pradeepjagdale7768877650
@pradeepjagdale7768877650 Жыл бұрын
Best Logic I found .... Thanks for the content.
@dakshdua16
@dakshdua16 Жыл бұрын
nice explanation
@supermariomistickgames4700
@supermariomistickgames4700 Жыл бұрын
Hello, can you help me understanding this one here? I have a mask of 0xFFFFFFFF and an input of 0x7FFFFFFF when I extract the value I do "0x7FFFFFFF & 0xFFFFFFFF" wich gives me the full input. But when I have the input and I try to apply the mask I do "0x7FFFFFFF | 0xFFFFFFFF" wich of course it does not give me the full input like the mask does. What am I doing wrong? Thanks in advance 👍.
@afelers
@afelers Жыл бұрын
Using the OR operator with a mask of 0xFFFFFFFF (which is a mask full of ones), you are basically telling the program to set everything to 1. The OR operator sets all bits of the input to 1 where there is a 1 in the mask at the same position. Which bits of the input are you trying to set or extract?
@supermariomistickgames4700
@supermariomistickgames4700 Жыл бұрын
Yeah I kind of noted it sadly. Btw this was so old and I saw that I misunderstood it. Basically when you have a mask like that (the full 1 values) you cannot remove it. So yeah, nothing much to do. Thanks for the help anyways.
@coding_bro4158
@coding_bro4158 Жыл бұрын
superb bro....i saw other O(n) solutions but they were very confusing . Your approach is best among all i saw thank you.
@ashpritmehra8174
@ashpritmehra8174 Жыл бұрын
Thank you!
@shaneyuhexin
@shaneyuhexin Жыл бұрын
after watching so many explanation videos, this one finally makes sense to me!
@duyviet5801
@duyviet5801 Жыл бұрын
I'm so disappointed that I didn't come up with great solutions like this..
@saurabh.g4280
@saurabh.g4280 Жыл бұрын
best and simple ..
@kp-cj8ro
@kp-cj8ro Жыл бұрын
Excellent explanation bro.....🙌🙌🙌
@BarikZone
@BarikZone Жыл бұрын
Thank you so much 🙂
@aniruddhmukeshiiitdharwad7596
@aniruddhmukeshiiitdharwad7596 Жыл бұрын
paan thook ke baat kar lodu! fake accent#$%^&
@udaykiran-wg3vb
@udaykiran-wg3vb Жыл бұрын
If you want views say it in indian accent. Learn to pronounce properly.
@udaykiran-wg3vb
@udaykiran-wg3vb Жыл бұрын
rey pandina kodaka. oora kukka aapara.
@ps_breakdowns
@ps_breakdowns Жыл бұрын
Hi sir, can you please provide any discount for your udemy course
@ps_breakdowns
@ps_breakdowns Жыл бұрын
@@BarikZone you have given in the description sir
@zxcvbnmasdfghjklqwertyuio
@zxcvbnmasdfghjklqwertyuio Жыл бұрын
Superb explanation!
@bilasroy5784
@bilasroy5784 Жыл бұрын
great explanation..thank you
@umrfaruk3832
@umrfaruk3832 2 жыл бұрын
Really good