题目:
判断一个整数是否是回文数。回文数是指正序(从左向右)和倒序(从右向左)读都是一样的整数。
示例 1:
输入: 121
输出: true
示例 2:
输入: -121
输出: false
解释: 从左向右读, 为 -121 。 从右向左读, 为 121- 。因此它不是一个回文数。
示例 3:
输入: 10
输出: false
解释: 从右向左读, 为 01 。因此它不是一个回文数。
进阶: 你能不将整数转为字符串来解决这个问题吗?
题目来源:https://leetcode-cn.com/problems/palindrome-number/
思路:
1、将数字转成字符串,再讲其反转后和原串对比判断其是否相等即可
C++代码:
基础班:
class Solution {
public:
bool isPalindrome(int x) {
string y = to_string(x);
reverse(y.begin(),y.end());
return y == to_string(x);
}
};
Python代码:
基础版:
class Solution(object):
def isPalindrome(self, x):
"""
:type x: int
:rtype: bool
"""
return str(x) == str(x)[::-1]