我们需要编写一个接受数字n并返回包含第一个n个自然数的数组的JavaScript函数。
唯一的条件是数字应按字典顺序排序,这意味着所有以1开头的数字应先于以2或3或4开头的数字,依此类推。
以下是代码-
const num = 24; const buildLexicographically = (num = 1) => { const res = []; const curr = num >= 9 ? 9 : num; for (let i = 1; i <= curr; i++) { res.push(i); for (let j = i * 10; j<=num; j++) { res.push(j) if(j % 10 === 9){ break; } } }; return res; }; console.log(buildLexicographically(num));输出结果
以下是控制台输出-
[ 1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 2, 20, 21, 22, 23, 24, 3, 4, 5, 6, 7, 8, 9 ]