9.回文数
题目链接:https://leetcode-cn.com/problems/palindrome-number/
1.思路
刚刚做完整数反转,回文数好像也差不多,负数一定不是回文数;整数反转以后等于其本身为回文数。
2.注意事项
题目要求一定要有返回值,return NULL。
3.代码
1 | bool isPalindrome(long long int x){ |
是不是摸鱼了……
题目链接:https://leetcode-cn.com/problems/palindrome-number/
刚刚做完整数反转,回文数好像也差不多,负数一定不是回文数;整数反转以后等于其本身为回文数。
题目要求一定要有返回值,return NULL。
1 | bool isPalindrome(long long int x){ |
是不是摸鱼了……