125. Valid Palindrome easy題
也是雙指針的題
這次有想到怎麼解
但判斷大小寫的函數沒用過
所以還是有上網查
class Solution {
public:
bool isPalindrome(string s) {
int start = 0;
const int n = s.length();
int end = n-1;
while(start<end){
while(start<end && !isalnum(s[start])) start++;
while(start<end && !isalnum(s[end])) end