LeetCode 125. 验证回文串

基本思路:
API学习;
alnum:判断某个字符是否是数字或者字母;
tolower,把大写转换为小写;
具体代码
class Solution {
public:
bool isPalindrome(string s) {
int l=0,r=s.size()-1;
while(l

LeetCode 125. 验证回文串最先出现在Python成神之路

版权声明:
作者:siwei
链接:https://www.techfm.club/p/28885.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>