forked from yubinbai/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.java
29 lines (29 loc) · 890 Bytes
/
Solution.java
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
public class Solution {
public boolean isPalindrome(int x) {
if (x < 0) return false;
int p10 = 1;
while (x / p10 >= 10) {
p10 *= 10;
}
// System.out.println(p10);
while (x > 0) {
int left = x / p10;
int right = x % 10;
if (left != right) return false;
x %= p10;
x /= 10;
p10 /= 100;
}
return true;
}
public static void main(String[] args) {
Solution s = new Solution();
System.out.println(s.isPalindrome(101));
System.out.println(s.isPalindrome(1));
System.out.println(s.isPalindrome(0));
System.out.println(s.isPalindrome(1001));
System.out.println(s.isPalindrome(1234));
System.out.println(s.isPalindrome(1221));
System.out.println(s.isPalindrome(-1221));
}
}