码迷,mamicode.com
首页 > 编程语言 > 详细

Leetcode 7.反转整数 By Python

时间:2018-09-22 01:01:42      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:object   ret   turn   def   class   数字   ==   leetcode   tco   

思路

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

标签:object   ret   turn   def   class   数字   ==   leetcode   tco   

原文地址:https://www.cnblogs.com/MartinLwx/p/9688750.html

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