We hope you all are enjoying our videos!!! Don't forget to leave a comment!!! Please like the video to support us!!! Questions you might like: ✅✅✅[ Tree Data Structure ] : kzbin.info/aero/PLJtzaiEpVo2zx-rCqLMmcFEpZw1UpGWls ✅✅✅[ Graphs Data Structure ] : kzbin.info/aero/PLJtzaiEpVo2xg89cZzZCHqX03a1Vb6w7C ✅✅✅[ January Leetcoding Challenge ] : kzbin.info/aero/PLJtzaiEpVo2wCalBcRcNjXQ0C6ku3dRkn ✅✅✅[ December Leetcoding Challenge ] : kzbin.info/aero/PLJtzaiEpVo2xo8OdPZxrpybGR8FmzZpCA ✅✅✅[ November Leetcoding Challenge ] : kzbin.info/aero/PLJtzaiEpVo2yMYz5RPH6pfB0wNnwWsK7e ✅✅✅[ August Leetcoding Challenge ] : kzbin.info/aero/PLJtzaiEpVo2xu4h0gYQzvOMboclK_pZMe ✅✅✅July Leetcoding challenges: kzbin.info/aero/PLJtzaiEpVo2wrUwkvexbC-vbUqVIy7qC- ✅✅✅June Leetcoding challenges: kzbin.info/aero/PLJtzaiEpVo2xIfpptnCvUtKrUcod2zAKG ✅✅✅May Leetcoding challenges: kzbin.info/aero/PLJtzaiEpVo2wRmUCq96zsUwOVD6p66K9e ✅✅✅Cracking the Coding Interview - Unique String: kzbin.info/aero/PLJtzaiEpVo2xXf4LZb3y_BopOnLC1L4mE Struggling in a question?? Leave in a comment and we will make a video!!!🙂🙂🙂
@shivamgurjar89796 ай бұрын
Very great explanation. Subscribed. Thank you 🙏
@AlgorithmsMadeEasy6 ай бұрын
Thank you
@vikasnathaniel62845 ай бұрын
Excellent explanation
@AlgorithmsMadeEasy4 ай бұрын
Glad it was helpful!
@amansayer4943 Жыл бұрын
thank you for this wonderful explanation.
@AlgorithmsMadeEasy Жыл бұрын
Glad it was helpful!
@csea_37_shayoribhowmick53 Жыл бұрын
Thank you amazing
@AlgorithmsMadeEasy Жыл бұрын
Thank you too!
@samwaadvivaad86072 жыл бұрын
man love your explanation thanks for this much mehnaat :)
@i.vigneshdavid16983 жыл бұрын
Thank you guys. Hardest thing in every language is regex...
@saiyashwanth19913 жыл бұрын
few suggestions could be naming convention, since you are coding in java better to go with camelCasing. So code looks more clean ,interviewer also focus on coding standards besides our working solutions.
@AlgorithmsMadeEasy3 жыл бұрын
Point taken !!
@ShreeHariYT2 жыл бұрын
for those who are searching for c++ solution class Solution { public: bool isNumber(string s) { bool digit=false,dot=false,seene=false; int count=0; for(int i=0;i0 && (s[i-1]!='e' && s[i-1]!='E'))return false; if(i==s.size()-1)return false; count++; } else if(ch=='.'){ if(dot || seene)return false; if(i==s.size()-1 && digit==false)return false; dot=true; } else if(ch=='e'|| ch=='E'){ if(seene)return false; if(digit==false || i==s.size()-1)return false; seene=true; }else{ return false; } } return true; } };
@tommyls43575 ай бұрын
And this shitty question, Ladies and Gentlemen, is one of the top asked questions at Meta 🙄.
@AlgorithmsMadeEasy5 ай бұрын
All the more reason to learn it. Thanks
@Piyush-yd1ez3 жыл бұрын
Bro leetcode suck and also your code too .It show true value for string "3." As u said "." at end of string in invalid input!!