JavaScript 中数字可能的最大位数差
我们需要编写一个 JavaScript 函数,该函数需要一个数字。然后,该函数应返回该数字的任意两个位数之间存在的最大差值。
换句话说,该函数只应返回其中存在最大和最小位数之间的差值。
例如
If the number is 654646, Then the smallest digit here is 4 and the greatest is 6 Hence, our output should be 2
示例
此代码将为 −
const num = 654646; const maxDifference = (num, min = Infinity, max = -Infinity) => { if(num){ const digit = num % 10; return maxDifference(Math.floor(num / 10), Math.min(digit, min), Math.max(digit, max)); }; return max - min; }; console.log(maxDifference(num));
输出
控制台中输出的 −
2
广告