speak in your original accent it makes things more easily understandable
@BarikZone5 ай бұрын
thank you
@ganeshjaggineni40976 ай бұрын
NICE SUPER EXCELLENT MOTIVATED
@kellykim4586 ай бұрын
REALLY GREAT EXPLANATION - THANK YOU SO MUCHHHH
@Preethuma996 ай бұрын
Thanks🎉
@alexgoldendragon34356 ай бұрын
how about these arrays: [0,2,1] and [0,2,1]. I dont think your code work??
@guimaraesalysson7 ай бұрын
Thanks for sharing this video, I finally understand the levenshtein algorithm
@mohammadyahya787 ай бұрын
Man you are amazing
@Code_G2017 ай бұрын
bro u dont have to do the accent man...
@BarikZone7 ай бұрын
Yes, you are right. I have changed my accent. Thanks for pointing out.
@ivanchl8 ай бұрын
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.
@ganeshjaggineni40978 ай бұрын
NICE SUPER EXCELLENT MOTIVATED
@dipsrocx40288 ай бұрын
Bhai accent kyu badal raha hai.
@BarikZone7 ай бұрын
I'm trying to learn English, i'm improving day by day. Thanks for pointing out.
@ishikatailor8 ай бұрын
Thanks.
@parichaysarkar376410 ай бұрын
The way he said Thirty Two 🥴
@neerajgupta000510 ай бұрын
Not efficient, use mask to swap without using loop
@agustintorres2223 Жыл бұрын
Good explanation and resolution code 👌
@tosha.e.t Жыл бұрын
VERY CLEAR
@tarunmali6228 Жыл бұрын
Subscribed!!! Best solution of this question on youtube
@ranjitprakash1986 Жыл бұрын
What happened to your accent lol
@rohanmathews4913 Жыл бұрын
Bhai aise awaaz mai pure video kaise bol lete ho? Hume bhi tips do please.
@baladevtanmayatilakmohapat7877 Жыл бұрын
BC jabardasti kyun accent change kar raha hai bhai?? Gareebo ka Angrez BC
@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 Жыл бұрын
what if the input is [ 3, 3, 2, -1 ]
@muntazirhaider625210 ай бұрын
return false
@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 Жыл бұрын
Best Logic I found .... Thanks for the content.
@dakshdua16 Жыл бұрын
nice explanation
@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 Жыл бұрын
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 Жыл бұрын
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 Жыл бұрын
superb bro....i saw other O(n) solutions but they were very confusing . Your approach is best among all i saw thank you.
@ashpritmehra8174 Жыл бұрын
Thank you!
@shaneyuhexin Жыл бұрын
after watching so many explanation videos, this one finally makes sense to me!
@duyviet5801 Жыл бұрын
I'm so disappointed that I didn't come up with great solutions like this..
@saurabh.g4280 Жыл бұрын
best and simple ..
@kp-cj8ro Жыл бұрын
Excellent explanation bro.....🙌🙌🙌
@BarikZone Жыл бұрын
Thank you so much 🙂
@aniruddhmukeshiiitdharwad7596 Жыл бұрын
paan thook ke baat kar lodu! fake accent#$%^&
@udaykiran-wg3vb Жыл бұрын
If you want views say it in indian accent. Learn to pronounce properly.
@udaykiran-wg3vb Жыл бұрын
rey pandina kodaka. oora kukka aapara.
@ps_breakdowns Жыл бұрын
Hi sir, can you please provide any discount for your udemy course