力扣每日一题 9. 回文数
给你一个整数 x ,如果 x 是一个回文整数,返回 true ;否则,返回 false 。
回文数是指正序(从左向右)和倒序(从右向左)读都是一样的整数。
例如,121 是回文,而 123 不是。
示例 1:
输入:x = 121
输出:true
示例 2:
输入:x = -121
输出:false
解释:从左向右读, 为 -121 。 从右向左读, 为 121- 。因此它不是一个回文数。
示例 3:
输入:x = 10
输出:false
解释:从右向左读, 为 01 。因此它不是一个回文数。
提示:
-231 <= x <= 231 - 1
进阶:你能不将整数转为字符串来解决这个问题吗?
Related Topics
数学
👍 2128
👎 0
可运行代码
package editor.cn;
class Q9 {
public static void main(String[] args) {
Solution solution = new Q9().new Solution();
System.out.println(solution.isPalindrome(1001));
}
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
public boolean isPalindrome(int x) {
if (x < 0 || (x % 10 == 0 && x != 0)) {
return false;
}
int reverNum = 0;
// 如果是回文数,那进行到一般的进位的时候,即可推出,因为x剩余的结果应该需要是和reverNum一样的
while (x > reverNum) {
reverNum = reverNum * 10 + x % 10;
x = x /10;
}
return x == reverNum || x == reverNum / 10;
}
}
//leetcode submit region end(Prohibit modification and deletion)
}
运行结果

等我先恰个🍎

浙公网安备 33010602011771号