The way you explained, is outstanding just keep uploading videos . Its helping us a lot.
@robinsingh202 Жыл бұрын
Please keep making such videos!!our basics are getting stronger!
@vishnulavudya31602 ай бұрын
You are really are underrated !
@amitmandal5842 Жыл бұрын
As usual, you explanation is awesome.. Thanks you Nikhil..😊😊
@atulsolanki173510 ай бұрын
Great way to explain the problem and solution, to make it very simple and easy to understand. Thank you, Nikhil.
@mounikathalla344010 ай бұрын
great work Nikhil..... thank you for these tutorials....👏👌👌👌
@CodewithAIYoutubeChannel Жыл бұрын
Awesome explanation ❤
@pradyumnakhadanga10165 ай бұрын
I am watching all your videos, It is awesome.
@IshaZaka4 ай бұрын
great way of explaning
@charlesopuoro5295 Жыл бұрын
Thanks always
@nikoo28 Жыл бұрын
So nice of you
@suhas88823 ай бұрын
This code is not working in leetcode for all the test cases
@ash8726 Жыл бұрын
can you make a video on variable-size sliding window algorithm
@nikoo2811 ай бұрын
will try to make one on it. did you have a look at the sliding window algorithm already? kzbin.info/www/bejne/a2e3qXuDfJWknrM
@pradyumnakhadanga10165 ай бұрын
It can be improved protected static boolean isPollindrom(String str){ int left = 0; int right = str.length()-1; while(left
@prettymess21 Жыл бұрын
The code is not accepted by leetcode
@nikoo28 Жыл бұрын
are you sure? I tried again, and it accepts. github.com/nikoo28/java-solutions/blob/master/src/main/java/leetcode/easy/ValidPalindrome.java
@jcv178 Жыл бұрын
you didn't explain in the code how to ignore non-alphabetic characters
@nikoo28 Жыл бұрын
i wanted to focus on the algorithm to check a palindrome. for your specific condition to check non-alphabetic characters, you can just add some if conditions. Also, it is not possible to account for every different problem. Some might have special symbols, some might allow numbers. Ideally, you should focus on understanding how the algorithm works...how to identify the palindrome...rest is just some decoration with if blocks and conditionals.
@myosith479510 ай бұрын
we have to use palindrome concept in many cases ...