整数反转

2020-05-05  本文已影响0人  7赢月

题目描述

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
}

思路

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

上一篇下一篇

猜你喜欢

热点阅读