题解 | #回文数字#
回文数字
http://www.nowcoder.com/practice/35b8166c135448c5a5ba2cff8d430c32
把int转成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;
}
};