JavaScript-查找最小的n位数字或更大

我们需要编写一个JavaScript函数,该函数以数字作为第一个参数(例如n),并以数字数组作为第二个参数。该函数应返回最小的n位数字,该数字是数组中指定的所有元素的倍数。如果不存在这样的n位元素,则应返回最小的此类元素。

例如:如果数组是-

const arr = [12, 4, 5, 10, 9]

对于n = 2和n = 3,输出应为180

示例

以下是代码-

const arr = [12, 4, 5, 10, 9]

const num1 = 2;

const num2 = 3;

const allDivides = (arr, num) => arr.every(el => num % el === 0);

const smallestMultiple = (arr, num) => {

   let smallestN = Math.pow(10, (num - 1));

   while(!allDivides(arr, smallestN)){

      smallestN++;

   };

   return smallestN;

};

console.log(smallestMultiple(arr, num1));

console.log(smallestMultiple(arr, num2));

输出结果

以下是控制台中的输出-

180

180

以上是 JavaScript-查找最小的n位数字或更大 的全部内容, 来源链接: utcz.com/z/359736.html

回到顶部