Leetcode 7.反转整数 By Python

Posted MartinLwx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode 7.反转整数 By Python相关的知识,希望对你有一定的参考价值。

思路

python提供了方便的字符串反转方法,所以还是蛮简单的这题

注意几个坑:

  • 0结尾的数字反转后要去除
  • 0-9的数字不存在反转问题,直接输出就好了

代码

class Solution(object):
    def reverse(self, x):
        """
        :type x: int
        :rtype: int
        """
        s = str(x)
        if s[0] == '-':
            num = s[1:].lstrip('0')
            x = -int(num[::-1])
            if x > pow(2,31)-1 or x < -pow(2,31):
                return 0
            else:
                return x
        elif len(s) == 1:
            return int(s)
        else:
            x = int(s[::-1].lstrip('0'))
            if x > pow(2,31)-1 or x < -pow(2,31):
                return 0
            else:
                return x   
#每种情况都判断一次是否溢出稍显繁琐,可以把它放在最后的return 语句里顺便判断

以上是关于Leetcode 7.反转整数 By Python的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 第7题 整数反转

LeetCode7.整数反转(Python3)

C++&Python 描述 LeetCode 7. 整数反转

p66 反转整数 (leetcode 7)

LeetCode 第七题--整数反转

Leetcode 344.反转字符串 By Python