LeetCode7-Python3-反转整数

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

示例 1:

输入: 123
输出: 321

 示例 2:

输入: -123
输出: -321

示例 3:

输入: 120
输出: 21

注意:

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


1、不妨将有符号整数转换为字符串格式

2、判断首位字符串是否是负号

3、slice notation特殊用法 (参见https://stackoverflow.com/questions/509211/understanding-pythons-slice-notation)

4、加上范围条件

So show you my code:

class Solution:
    def reverse(self, x):
        """
        :type x: int
        :rtype: int
        """
        str_x = str(x)
        if str_x[0] != '-':
            str_x = str_x[::-1]
            return(int(str_x) if int(str_x) < 2**31-1 else 0)
        else:
            str_x = str_x[::-1][:-1]
            return(-int(str_x) if int(str_x) < 2**31 else 0)
Runtime:  56 ms


你可能感兴趣的:(LeetCode7-Python3-反转整数)