leetcode|leetcode 7. 反转整数
给定一个 32 位有符号整数,将整数中的数字进行反转。
示例 1:
输入: 123
输出: 321
示例 2:
输入: -123
输出: -321
示例 3:
输入: 120
输出: 21
【leetcode|leetcode 7. 反转整数】注意:
假设我们的环境只能存储 32 位有符号整数,其数值范围是 [?231, 231 ? 1]。根据这个假设,如果反转后的整数溢出,则返回 0。
解决思路:
- 先把整数转换成字符串
- 如果是负数,那么不取第0位,进行数字反转,然后变成整数,进行拼接
- 判断结果是否在?231, 231 ? 1范围类
- 参考:Python 实现字符串反转的9种方法
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
推荐阅读
- 【Leetcode/Python】001-Two|【Leetcode/Python】001-Two Sum
- leetcode|leetcode 92. 反转链表 II
- 二叉树路径节点关键值和等于目标值(LeetCode--112&LeetCode--113)
- LeetCode算法题-11.|LeetCode算法题-11. 盛最多水的容器(Swift)
- LeetCode(03)Longest|LeetCode(03)Longest Substring Without Repeating Characters
- Leetcode|Leetcode No.198打家劫舍
- [leetcode数组系列]1两数之和
- 数据结构和算法|LeetCode 的正确使用方式
- leetcode|今天开始记录自己的力扣之路
- LeetCode|LeetCode 876. 链表的中间结点