forked from M3-Academy/challenge-algorithms-v2.0
feat: resolucao funcao isPrime
This commit is contained in:
parent
81678ac150
commit
938bfcee0f
@ -1,4 +1,12 @@
|
||||
export function isPrime(value) {
|
||||
// implementar logica aqui
|
||||
|
||||
for (let i = 2; i < value; i++)
|
||||
if (value % i === 0) {
|
||||
return false;
|
||||
}
|
||||
return value > 1;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
isPrime(7)
|
Loading…
Reference in New Issue
Block a user