算法系列------回文数
程序员文章站
2022-03-13 12:57:29
...
class Solution {
public boolean isPalindrome(int x) {
int j=0;
if(x<0)
return false;
String xStr = x + "";
String yStr = reverse1(xStr);
char [] a = yStr.toCharArray();
for(int i=0; i<a.length; i++){
if(a[i] == xStr.charAt(i)){
j++;
}else{
return false;
}
}
if(j == xStr.length()){
return true;
}
return false;
}
public static String reverse1(String str) {
return new StringBuilder(str).reverse().toString();
}
}