LeetCode9.回文数(Python3)
Posted Xavier Jiezou
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode9.回文数(Python3)相关的知识,希望对你有一定的参考价值。
9.回文数
来源
https://leetcode-cn.com/problems/palindrome-number/description/
难度
容易
标签
math
公司
未知
描述
给你一个整数 x
,如果 x
是一个回文整数,返回 true
;否则,返回 false
。
回文数是指正序(从左向右)和倒序(从右向左)读都是一样的整数。例如,121
是回文,而 123
不是。
示例
示例 1:
输入:x = 121
输出:true
示例 2:
输入:x = -121
输出:false
解释:从左向右读, 为 -121 。 从右向左读, 为 121- 。因此它不是一个回文数。
示例 3:
输入:x = 10
输出:false
解释:从右向左读, 为 01 。因此它不是一个回文数。
示例 4:
输入:x = -101
输出:false
提示
− 2 31 < = x < = 2 31 − 1 -2^{31} <= x <= 2^{31} - 1 −231<=x<=231−1
进阶
你能不将整数转为字符串来解决这个问题吗?
提交
提交1:
提交结果 | 执行用时 | 内存消耗 | 编程语言 | 时间复杂度 | 空间复杂度 |
---|---|---|---|---|---|
通过 | 60 ms(击败68.49%) | 15.1 MB(击败12.86%) | Python3 | O(1) | O(1) |
class Solution:
def isPalindrome(self, x: int) -> bool:
return str(x) == str(x)[::-1]
提交2:
提交结果 | 执行用时 | 内存消耗 | 编程语言 | 时间复杂度 | 空间复杂度 |
---|---|---|---|---|---|
通过 | 60 ms(击败68.49%) | 15.1 MB(击败5.46%) | Python3 | O(1) | O(1) |
class Solution:
def isPalindrome(self, x: int) -> bool:
s = str(x)
l = len(s)
h = l//2
return s[:h] == s[-1:-h-1:-1]
提交3:
提交结果 | 执行用时 | 内存消耗 | 编程语言 | 时间复杂度 | 空间复杂度 |
---|---|---|---|---|---|
通过 | 60 ms(击败68.49%) | 15 MB(击败23.45%) | Python3 | O( log n \\log n logn) | O(1) |
class Solution:
def isPalindrome(self, x: int) -> bool:
if x < 0 or (x % 10 == 0 and x != 0):
return False
revertedNumber = 0
while x > revertedNumber:
revertedNumber = revertedNumber * 10 + x % 10
x //= 10
return x == revertedNumber or x == revertedNumber // 10
题解
https://leetcode-cn.com/problems/palindrome-number/solution/hui-wen-shu-by-leetcode-solution/
以上是关于LeetCode9.回文数(Python3)的主要内容,如果未能解决你的问题,请参考以下文章