美文网首页
整数反转

整数反转

作者: 7赢月 | 来源:发表于2020-05-05 15:38 被阅读0次

    题目描述

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


    func reverse(x int) int {
        var y int
        for x != 0{
            y = y*10 + x%10
            if y > math.MaxInt32 || y < math.MinInt32{
                return 0
            }
            x = x/10
        }
        return y
    }
    

    思路

    这里多注意下数组越界的情况!

    相关文章

      网友评论

          本文标题:整数反转

          本文链接:https://www.haomeiwen.com/subject/jjbmghtx.html