判断回文数字 9. Palindrome Number
2018-06-17 23:25:04来源:未知 阅读 ()
Determine whether an integer is a palindrome. Do this without extra space.
Could negative integers be palindromes? (ie, -1)
If you are thinking of converting the integer to string, note the restriction of using extra space.
You could also try reversing an integer. However, if you have solved the problem "Reverse Integer", you know that the reversed integer might overflow. How would you handle such case?
There is a more generic way of solving this problem.
1 class Solution: 2 def isPalindrome(self, x): 3 """ 4 :type x: int 5 :rtype: bool 6 """ 7 if x < 0: 8 return False 9 elif x < 10: 10 return True 11 t = x 12 n = 0 13 while t > 0: 14 n += 1 15 t = t // 10 16 for i in range(n // 2): 17 lnum = (x // (10 ** (n-i-1))) % 10 18 rnum = (x // (10 ** i) ) % 10 19 if lnum != rnum: 20 return False 21 return True
根据数字的位数,从两头开始比较是否相等
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- python3 之 判断闰年小实例 2019-08-13
- 输入某年某月某日,判断这一天是这一年的第几天 2019-07-24
- python学习教程,猜数字游戏开发 2019-07-24
- Python-03-流程控制 2019-07-24
- 力扣:超级回文数 2019-07-24
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash