给出一个随机数数组。 创建新的两个数组: -第一个数组应包含斐波那契数列的数字; -第二个数组应包含非斐波那契数字。
static getRandomInt(min: number=0, max: number=100): number {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max - min + 1)) + min;
}
static getRandNumbers(): number[] {
let result = [];
for(let i=0; i < 1*10*1000; ++i) {
result.push(getRandomInt(0, 1*1000*1000));
}
return result;
}
const array = getRandNumbers(); // <-- this is array to sort out
谢谢!