【LeetCode】#9迴文數(Palindrome Number)
阿新 • • 發佈:2018-12-03
【LeetCode】#9迴文數(Palindrome Number)
題目描述
判斷一個整數是否是迴文數。迴文數是指正序(從左向右)和倒序(從右向左)讀都是一樣的整數。
示例
示例 1:
輸入: 121
輸出: true
示例 2:
輸入: -121
輸出: false
解釋: 從左向右讀, 為 -121 。 從右向左讀, 為 121- 。因此它不是一個迴文數。
示例 3:
輸入: 10
輸出: false
解釋: 從右向左讀, 為 01 。因此它不是一個迴文數。
Description
Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward.
Example
Example 1:
Input: 121
Output: true
Example 2:
Input: -121
Output: false
Explanation: From left to right, it reads -121. From right to left, it becomes 121-. Therefore it is not a palindrome.
Example 3:
Input: 10
Output: false
Explanation: Reads 01 from right to left. Therefore it is not a palindrome.
解法
class Solution{
public boolean isPalindrome(int x){
if(x<0 || x!=0 && x%10==0){
return false;
}
int s = 0;
while(s<=x){
s = s*10 + x%10;
if(s==x || s==x/10){
return true;
}
x /= 10;
}
return false;
}
}