【LeetCode】#9回文数(Palindrome Number)

【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:

扫描二维码关注公众号,回复: 4341068 查看本文章

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;
	}
}

猜你喜欢

转载自blog.csdn.net/weixin_43858604/article/details/84669309