feat: implementação de algoritmo que retorne se o numero passado é primo ou não
This commit is contained in:
parent
0c2be2bced
commit
2e9b910a63
@ -1,4 +1,11 @@
|
||||
export function isPrime(value) {
|
||||
// implementar logica aqui
|
||||
let numero = value
|
||||
|
||||
for (let i = 2; i < numero; i++)
|
||||
if (numero % i === 0) {
|
||||
return false;
|
||||
}
|
||||
return numero > 1;
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user