LeetCode#7整数反转

题目描述

/**
 * @param {number} x
 * @return {number}
 */
var reverse = function(x) {
  let max = Math.pow(2,31) - 1
  let min = Math.pow(-2,31)
  let result = 0, pop
  while(x !== 0){
    pop = x % 10
    x = (x - pop) / 10
    result = result * 10 + pop
  }
  if(result > max || result < min)
    return 0
  return result
}

利用整数取模反转,注意判断溢出情况。

posted @ 2020-09-26 23:28  就这样写  阅读(86)  评论(0编辑  收藏  举报