leetcode7-反转整数-python

给定一个 32 位有符号整数,将整数中的数字进行反转。

示例 1:
输入: 123
输出: 321

示例 2:
输入: -123
输出: -321

示例 3:
输入: 120
输出: 21

注意:
假设我们的环境只能存储 32 位有符号整数,其数值范围是 [−231, 231 − 1]。根据这个假设,如果反转后的整数溢出,则返回 0。

class Solution:
    def reverse(self, x):
        """
        :type x: int
        :rtype: int
        """
        if x>0:
            a=list(reversed(str(x)))
            if a[0]=='0':
                b=int(''.join(a[1:]))
            else:
                b=int(''.join(a))
            if b<pow(-2,31) or b>pow(2,31)-1:
                return 0
            else:
                return b
        if x<0:
            a=list(reversed((list(str(x))[1:])))
            if a[0]=='0':
                b=int(''.join(['-']+a[1:]))
            else:
                b=int(''.join(['-']+a))
            if b<pow(-2,31) or b>pow(2,31)-1:
                return 0
            else:
                return b
        if x==0:
            return 0

s=Solution()
print(s.reverse(0))

猜你喜欢

转载自blog.csdn.net/qq_40916453/article/details/82831079