forked from M3-Academy/challenge-algorithms-v2.0
feat: implementa função isPrime
This commit is contained in:
parent
63fd0f2dda
commit
ed34bb7d8e
@ -1,4 +1,15 @@
|
|||||||
export function isPrime(value) {
|
export function isPrime(value) {
|
||||||
// implementar logica aqui
|
// implementar logica aqui
|
||||||
|
if(value == 2){
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
else if (value == 1){
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
for(let i = 2; i < value; i++){
|
||||||
|
if(value % i == 0){
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user