美文网首页
【Leetcode/Python】007-Reverse Int

【Leetcode/Python】007-Reverse Int

作者: FLYNNNOTES | 来源:发表于2018-09-22 12:10 被阅读0次

    题目

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

    • 示例 1:
    输入: 123
    输出: 321
    
    • 示例 2:
    输入: -123
    输出: -321
    
    • 示例 3:
    输入: 120
    输出: 21
    

    注意:

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

    class Solution:
        def reverse(self, x):
            """
            :type x: int
            :rtype: int
            """
            if x>= 0:
                result = int(str(x)[::-1])
            else:
                result = -int(str(abs(x))[::-1])
            
            if result>(-2**31) and result<=(2**31-1):
                return result
            else:
                return 0
    

    相关文章

      网友评论

          本文标题:【Leetcode/Python】007-Reverse Int

          本文链接:https://www.haomeiwen.com/subject/xzotoftx.html