码迷,mamicode.com
首页 > 其他好文 > 详细

9. Palindrome Number(判断整型数字是否是回文,直接暴力即可)

时间:2018-02-18 15:40:08      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:nbsp   solution   pre   rom   type   without   log   style   als   

Determine whether an integer is a palindrome. Do this without extra space.

 

暴力的时候,注意奇数偶数。

 1 class Solution:
 2     def isPalindrome(self, x):
 3         """
 4         :type x: int
 5         :rtype: bool
 6         """
 7         x =str(x)
 8 
 9         if(len(x)%2!=0):#
10             for i in range(int(len(x)/2)+1):
11                 if(x[i]!=x[len(x)-i-1]):
12                     return False
13         else:
14             for i in range(int(len(x)/2)+1):
15                 if(x[i]!=x[len(x)-i-1]):
16                     return False
17         return True
18                     
19         

 

9. Palindrome Number(判断整型数字是否是回文,直接暴力即可)

标签:nbsp   solution   pre   rom   type   without   log   style   als   

原文地址:https://www.cnblogs.com/zle1992/p/8452811.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!