class Solution {
public:
bool isPalindrome(int x) {
int str[30];
int cur=0;
if(x<0){
return false;
}
while(x!=0){
str[cur++]=x%10;
x/=10;
}
for(int i=0;i<cur/2;i++){
if(str[i]!=str[cur-i-1]){
return false;
}
}
return true;
}
};
Leetcode: Palindrome Number
最新推荐文章于 2020-06-19 10:56:37 发布