1.0.1 • Published 4 years ago
number-array-without-repeating v1.0.1
Description
Algorithm to fill a vector with random numbers without repeating.
Usage
let Array=require("./Array").Array;
let newarray=[];
newarray.length=99;
let objarray=new Array(newarray);
let calc=objarray.random_number_without_repeating();
let arraysort=calc.sort((a,b)=>a-b);
console.log(calc);