JavaScript:实现求 1 到 20 的所有数整除的最小正数算法
/*
Smallest multiple
2520 is the smallest number that can be divided by each of the numbers from 1 to 10 without any remainder.
What is the smallest positive number that is evenly divisible by all of the numbers from 1 to 20?
*/
export const findSmallestMultiple = () => {
const divisors =