https://leetcode-cn.com/problems/reverse-integer/description/

题目描述

给定一个 32 位有符号整数,将整数中的数字进行反转。
示例 1:
输入: 123
输出: 321
示例 2:
输入: -123
输出: -321
示例 3:
输入: 120
输出: 21
注意:
假设我们的环境只能存储 32 位有符号整数,其数值范围是 [−2^31, 2^31 − 1]。根据这个假设,如果反转后的整数溢出,则返回 0。

代码实现

class Solution(object):
    def reverse(self, x):
        """
        :type x: int
        :rtype: int
        """
        x = int(str(x)[::-1]) if x >= 0 else - int(str(-x)[::-1])
        return x if x < 2147483648 and x >= -2147483648 else 0

相关文章:

  • 2021-08-01
  • 2022-01-20
  • 2021-12-03
  • 2021-11-25
  • 2021-11-19
  • 2022-02-01
  • 2021-11-21
  • 2022-02-13
猜你喜欢
  • 2021-12-25
  • 2021-08-25
  • 2021-07-29
  • 2021-09-01
  • 2022-12-23
  • 2021-06-25
相关资源
相似解决方案