scrimba
Note at 2:56
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Note at 2:56
AboutCommentsNotes
Note at 2:56
Expand for more info
main.js
run
preview
console
function avoidObstacles(nums) {
const largestNum = nums.sort((a, b) => a-b)[nums.length - 1];

for (let i = 1; i <= largestNum + 1; i++) {
if(nums.every((value) => value % i !== 0)) {
return i;
}
}
}



/**
* Test Suite
*/
describe('avoidObstacles()', () => {
it('returns minimal number of jumps in between numbers', () => {
// arrange
const nums = [5, 3, 6, 9, 7];

// act
const result = avoidObstacles(nums);

// log
console.log("result: ", result);

// assert
expect(result).toBe(4);
});
});
Console
"result: 4 "
,
/index.html
LIVE