博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LeetCode-9-Palindrome Number
阅读量:5976 次
发布时间:2019-06-20

本文共 512 字,大约阅读时间需要 1 分钟。

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

 

判断一个整数是否是回文数。

 

思路:求出数字abcd的逆序的数值dcba,如果是回文数的话,那么abcd==dcba。

 

时间复杂度:O(n)

 

python代码:

1 class Solution(object): 2     def isPalindrome(self, x): 3         """ 4         :type x: int 5         :rtype: bool 6         """ 7         temp = x 8         revert_x = 0 9         while temp > 0:10             revert_x = revert_x*10 + temp % 1011             temp //= 1012         return revert_x == x

 

转载于:https://www.cnblogs.com/z941030/p/5608785.html

你可能感兴趣的文章
精通 MEAN: MEAN 堆栈
查看>>
weblogic管理2 - 创建并启动一个managed server
查看>>
前缀、中缀、后缀表达式(转载)
查看>>
html如何设置radio单选按钮默认选中效果
查看>>
mysql 多实例应用配置部署指南
查看>>
Oracle 12c 新特性之 temp undo
查看>>
What every programmer should know about memory 笔记
查看>>
移动BPM解决方案
查看>>
bootstrap-关闭按钮
查看>>
uC/OS-II源码分析(四)
查看>>
percona innobackupex 使用
查看>>
ORA-00257: archiver error. Connect internal only, until freed
查看>>
Caused by: java.lang.ClassNotFoundException: org.objectweb.asm.Type
查看>>
Lync 2013就地升级到Skype for Business 2015-01
查看>>
Mac 系统不兼容移动硬盘无法识别怎么办
查看>>
php 二叉树 与赫夫曼树
查看>>
从产业链看技术的突破,第二届N+ VR&AR&MR技术高峰论坛圆满落幕
查看>>
ZABBIX3.0配置邮件报警
查看>>
马哥运维学习作业(二)
查看>>
php拆分数字字符串方法
查看>>