题解 | #牛的回文编号#
牛的回文编号
https://www.nowcoder.com/practice/f864e31a772240f1b4310fbdc27fad48
知识点
字符串,回文
思路
先使用to_string 函数将数字转化为字符串,再利用双指针进行头尾判断即可
代码c++
#include <string>
class Solution {
public:
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param x int整型
* @return bool布尔型
*/
bool isPalindrome(int x) {
string s = to_string(x);
for (int i = 0, j = s.size() - 1; i < j; i++, j--) {
if (s[i] != s[j])return false;
}
return true;
}
};