Leetcode 7.反转整数 By Python

2021-06-20 14:04

阅读:528

标签:object   ret   turn   def   class   数字   ==   leetcode   tco   

思路

python提供了方便的字符串反转方法,所以还是蛮简单的这题

注意几个坑:

  • 0结尾的数字反转后要去除
  • 0-9的数字不存在反转问题,直接输出就好了

代码

class Solution(object):
    def reverse(self, x):
        """
        :type x: int
        :rtype: int
        """
        s = str(x)
        if s[0] == '-':
            num = s[1:].lstrip('0')
            x = -int(num[::-1])
            if x > pow(2,31)-1 or x  pow(2,31)-1 or x 

Leetcode 7.反转整数 By Python

标签:object   ret   turn   def   class   数字   ==   leetcode   tco   

原文地址:https://www.cnblogs.com/MartinLwx/p/9688750.html


评论


亲,登录后才可以留言!