题目描述
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
}
思路
这里多注意下数组越界的情况!
网友评论