Leetcode解题 7. Reverse Integer 反转整数
Posted ki1ler
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode解题 7. Reverse Integer 反转整数相关的知识,希望对你有一定的参考价值。
没看清要求,提交错误一次。
要求是 "如果反转后的整数溢出,则返回 0"。
class Solution(object): def reverse(self, x): if x < 0: y = int(str(x)[0:1] + str(x)[:0:-1]) if y < -2 ** 31: return 0 else: return y else: y = int(str(x)[::-1]) if y > 2 ** 31 - 1: return 0 else: return y Solution = Solution() print Solution.reverse(1534236469)
以上是关于Leetcode解题 7. Reverse Integer 反转整数的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode 7. 整数反转 Reverse Integer