Add libsive.js
This commit is contained in:
parent
ca837fd065
commit
3edefcef5d
1 changed files with 23 additions and 0 deletions
23
libsive.js
Normal file
23
libsive.js
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
const isPrime = num => {
|
||||||
|
for(let i = 2, s = Math.sqrt(num); i <= s; i++) {
|
||||||
|
if(num % i === 0) return false;
|
||||||
|
}
|
||||||
|
return num > 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
function sive(siveTo) {
|
||||||
|
let primes = []
|
||||||
|
siveTo = Number(siveTo)
|
||||||
|
|
||||||
|
for (var i = 1; i < siveTo; i++) {
|
||||||
|
if (isPrime(i)) {
|
||||||
|
primes.push(i)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isPrime(siveTo)) {
|
||||||
|
primes.push(siveTo)
|
||||||
|
}
|
||||||
|
|
||||||
|
return primes
|
||||||
|
}
|
Loading…
Reference in a new issue