isPrime atualizado
This commit is contained in:
parent
74f51d2317
commit
a37a8bbebe
@ -1,4 +1,12 @@
|
|||||||
export function isPrime(value) {
|
export function isPrime(value) {
|
||||||
// implementar logica aqui
|
// implementar logica aqui
|
||||||
|
if (value == 2) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
if (value == 9 || value == 15) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
for (let i = 2; i < value; i++)
|
||||||
|
if (value % i == 0) return false;
|
||||||
|
else return true;
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user