ran npm run tdd
This commit is contained in:
@ -1,2 +1,3 @@
|
||||
module.exports = randomIntArrayInRange = (min, max, n = 1) =>
|
||||
Array.from({ length: n }, () => Math.floor(Math.random() * (max - min + 1)) + min);
|
||||
const randomIntArrayInRange = (min, max, n = 1) =>
|
||||
Array.from({ length: n }, () => Math.floor(Math.random() * (max - min + 1)) + min);
|
||||
module.exports = randomIntArrayInRange
|
||||
Reference in New Issue
Block a user