leetcode|leetcode 7. 反转整数

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

输入: 123 输出: 321

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

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

【leetcode|leetcode 7. 反转整数】注意:
假设我们的环境只能存储 32 位有符号整数,其数值范围是 [?231, 231 ? 1]。根据这个假设,如果反转后的整数溢出,则返回 0。
解决思路:
  1. 先把整数转换成字符串
  2. 如果是负数,那么不取第0位,进行数字反转,然后变成整数,进行拼接
  3. 判断结果是否在?231, 231 ? 1范围类
  4. 参考:Python 实现字符串反转的9种方法
代码1
class Solution(object): def reverse(self, x): """ :type x: int :rtype: int """ new_x = str(x) if new_x.startswith('-'): res = -+int(str(x)[:0:-1]) else: res = int(str(x)[::-1]) if -2**31 < res < 2**31-1: return res return 0

原文:http://www.chenxm.cc/post/712.html

    推荐阅读