题目:https://leetcode.com/problems/palindrome-number/
代码(github):https://github.com/illuz/leetcode
判断一个数是否是回文数。
按自己想的去写就行了。
- 可以先转为字符串,再判断。(这种解法用 Python 可以一句话完成 =w=)
- 更好的方法是直接算出回文的数再直接比较。
Name | Name | Last commit date | ||
---|---|---|---|---|
parent directory.. | ||||
题目:https://leetcode.com/problems/palindrome-number/
代码(github):https://github.com/illuz/leetcode
判断一个数是否是回文数。
按自己想的去写就行了。