public class Solution {
public boolean isPalindrome(int x) {
if (x < 0) {
return false;
}
int div = 1;
while (x / div >= 10) {
div *= 10;
}
while (x != 0) {
int left = x / div; // get highest pos;
int right = x % 10; // git lowest pos;
if (left != right) {
return false;
}
x = (x % div) / 10;
div = div / 100;
}
return true;
}
}