2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 ...
(Loop)
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 ...
3 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 ...
5 7 11 13 17 19 23 25 29 31 35 37 41 43 47 49 53 55 59 61 65 67 71 73 77 ...
7 11 13 17 23 25 29 31 37 41 43 47 53 55 59 61 67 71 73 77 83 85 89 91 97 ...
ludic
should be a function.
testString: assert(typeof ludic === 'function', 'ludic
should be a function.');
- text: ludic(2)
should return a array.
testString: assert(Array.isArray(ludic(2)));
- text: ludic(2)
should return [1, 2]
.
testString: assert.deepEqual(ludic(2), [1, 2]);
- text: ludic(3)
should return [1, 2, 3]
.
testString: assert.deepEqual(ludic(3), [1, 2, 3]);
- text: ludic(5)
should return [1, 2, 3, 5]
.
testString: assert.deepEqual(ludic(5), [1, 2, 3, 5]);
- text: ludic(20)
should return [1, 2, 3, 5, 7, 11, 13, 17]
.
testString: assert.deepEqual(ludic(20), [1, 2, 3, 5, 7, 11, 13, 17]);
- text: ludic(26)
should return [1, 2, 3, 5, 7, 11, 13, 17, 23, 25]
.
testString: assert.deepEqual(ludic(26), [1, 2, 3, 5, 7, 11, 13, 17, 23, 25]);
```