feat: Adiciona o código do desafio 5
This commit is contained in:
parent
a847d93559
commit
a3ba7348e9
@ -1,4 +1,9 @@
|
||||
export function isPrime(value) {
|
||||
// implementar logica aqui
|
||||
if (value === 0 || value === 1) return false;
|
||||
|
||||
for (let i = 2; i <= Math.sqrt(value); i++) {
|
||||
if (value % i === 0) return false;
|
||||
}
|
||||
return true;
|
||||
}
|
Loading…
Reference in New Issue
Block a user