腾讯五十题 No.6 回文数
作者:互联网
题目链接
easy题,没有奇奇怪怪的条件限制
class Solution{
public boolean isPalindrome(int x){
if(x<0) return false;
//if(x<10) return true;
int num = x;
int ans = 0;
while(x != 0){
ans =ans*10 + x%10;
x = x/10;
}
return ans == num;
}
}
标签:int,class,Solution,isPalindrome,No.6,腾讯,public,回文 来源: https://www.cnblogs.com/jianjiana/p/15863988.html