feat(isPrime): Implementa função isPrime
This commit is contained in:
parent
cfe0e803bf
commit
264b1a1660
@ -1,4 +1,9 @@
|
||||
export function isPrime(value) {
|
||||
// implementar logica aqui
|
||||
|
||||
for (let x = 2; x < value; x++) {
|
||||
if (value % x === 0 || value <= 1) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
Loading…
Reference in New Issue
Block a user