创建作为斐波那契数列项的数组

时间:2019-07-05 21:26:07

标签: javascript arrays typescript sequence fibonacci

给出一个随机数数组。 创建新的两个数组: -第一个数组应包含斐波那契数列的数字; -第二个数组应包含非斐波那契数字。

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

谢谢!

0 个答案:

没有答案