『LeetCode』练习第六弹_算法9题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了『LeetCode』练习第六弹_算法9题相关的知识,希望对你有一定的参考价值。
9. Palindrome Number
判断回文数
1 class Solution(object): 2 def isPalindrome(self, x): 3 """ 4 :type x: int 5 :rtype: bool 6 """ 7 if x<0: 8 return False 9 y = int(str(abs(x))[::-1]) 10 if x == y: 11 return True 12 else: 13 return False
结果:Accepted,虽然本来就是easy难度的,但仍然感觉用python写好赖皮
以上是关于『LeetCode』练习第六弹_算法9题的主要内容,如果未能解决你的问题,请参考以下文章