forked from M3-Academy/challenge-algorithms-v2.0
feat(desafio05):desafio-completo #5
@ -1,4 +1,13 @@
|
|||||||
export function isPrime(value) {
|
export function isPrime(value) {
|
||||||
// implementar logica aqui
|
// implementar logica aqui
|
||||||
|
if(value == 0 || value == 1) {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
for(let div = 2; div <= Math.sqrt(value); div++){
|
||||||
|
if(value % div == 0) {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user