2019-03-09 algorithm leetcode -addDigits Leetcode题解之 —— 各位相加 思路 暴力遍历解法 题解 123456789101112131415161718/** * @param {number} num * @return {number} */var addDigits = function (num) { while (String(num).length !== 1) { let total = 0; while (num) { total += num % 10; num = ~~(num / 10); } num = total; } return num;}; 作者 : zhaoyang Duan 地址 : https://ddzy.github.io/blog/2019/03/09/leetcode-addDigits/ 来源 : https://ddzy.github.io/blog 著作权归作者所有,转载请联系作者获得授权。