其他分享
首页 > 其他分享> > Leecode之翻转整数

Leecode之翻转整数

作者:互联网

给你一个 32 位的有符号整数 x ,返回将 x 中的数字部分反转后的结果。 如果反转后整数超过 32 位的有符号整数的范围 [−231, 231 − 1] ,就返回 0。 假设环境不允许存储 64 位整数(有符号或无符号)。


示例 1:

输入:x = 123
输出:321

示例 2:

输入:x = -123
输出:-321

示例 3:

输入:x = 120
输出:21

示例 4:

输入:x = 0
输出:0

提示:
-2**31 <= x <= 2**31 - 1
class Solution:
    #翻转整数
    def __init__(self,x: int) -> int:
        self.x = x
    def reverse(self):
        tList = list(str(self.x))
        if tList[0] == '-':
            rNum = int(''.join(tList[1:][::-1]))*(-1)
        else:
            rNum = int(''.join(tList[1:][::-1]))
        print(rNum)
        
        if rNum in range(pow(2,31)*(-1),pow(2,31)-1):
            return True
        else:
            return False

题目来源:力扣(LeetCode)
链接

标签:示例,int,self,整数,Leecode,tList,rNum,翻转
来源: https://blog.csdn.net/qq_45893319/article/details/118977136