-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathValid_Palindrome.cpp
More file actions
39 lines (39 loc) · 878 Bytes
/
Copy pathValid_Palindrome.cpp
File metadata and controls
39 lines (39 loc) · 878 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
class Solution {
public:
bool isPalindrome(string s) {
/*string o;
for(char c: s){
if(isalnum(c)){
o+=tolower(c);
}
}
int left=0;
int right = o.length()-1;
while(left<=right){
if(o[left]!=o[right]){
return false;
}
left++;
right--;
}
return true;*/
int right=s.length()-1;
int left=0;
while(left<right){
if(!isalnum(s[left])){
left++;
continue;
}
if(!isalnum(s[right])){
right--;
continue;
}
if(tolower(s[left])!=tolower(s[right])){
return false;
}
left++;
right--;
}
return true;
}
};