题目
LeetCode - 125. Valid Palindrome
题目链接
https://leetcode.com/problems/valid-palindrome/
参考博客
解题思路
简单题。
解题源码
class Solution {
public:
bool isPalindrome(string s) {
string ans, ans2;
for(auto t : s){
if(isdigit(t)) ans.push_back(t);
else if (isalpha(t)) ans.push_back(tolower(t));
}
ans2 = ans;
reverse(ans2.begin(), ans2.end());
return ans == ans2;
}
};