所有Leetcode题目不定期汇总在 Github, 欢迎大家批评指正,讨论交流。 class Solution: def isPalindrome(self, x): """ :type x: int :rtype: bool """ return str(x)[::-1] == str(x) 所有Leetcode题目不定期汇总在 Github, 欢迎大家批评指正,讨论交流。