我们需要编写一个以正整数作为唯一输入的JavaScript函数。该函数应该找到并返回该数字与可以通过对该数字的数字重新排序而形成的最小数字之间的差。
例如-
如果输入号码是820
然后,可以重新排列其位数的最小数字是028 = 28
并且输出应该是-
820 - 28 = 792
const num = 820; const maximumDifference = (num) => { const numStr = '' + num; const sorted = numStr.split('').sort(); const smallest = +sorted.join(''); return num -smallest; }; console.log(maximumDifference(num));
输出结果
控制台中的输出将是-
792