【JS】【LeetCode】7. 整数反转
2021-01-24 23:13
标签:ons asc sig abs function ret info bsp 判断 【JS】【LeetCode】7. 整数反转 标签:ons asc sig abs function ret info bsp 判断 原文地址:https://www.cnblogs.com/ximiximi-blog/p/13230931.htmlvar reverse = function(x) {
var s = Math.sign(x) // 判断正负数
var x = Math.abs(x) // 求绝对值
var res = 0
while(x > 0) {
const nowNum = x % 10 // 取余数
x = (x - nowNum) / 10 // 去除个位数
res = res * 10 + nowNum
}
res = res * s // 结果 * 符号(正负数)
if(res > (Math.pow(2,31) - 1) || res
上一篇:一、web自动化简介
文章标题:【JS】【LeetCode】7. 整数反转
文章链接:http://soscw.com/index.php/essay/46526.html