forked from M3-Academy/challenge-algorithms-v2.0
feat: Adiciona 05-isPrime
This commit is contained in:
parent
c0b30c28d8
commit
63486a6394
@ -1,4 +1,11 @@
|
||||
export function isPrime(value) {
|
||||
// implementar logica aqui
|
||||
|
||||
for (var i = 2; i < value; i++)
|
||||
if (value % i === 0){
|
||||
return false
|
||||
}
|
||||
|
||||
return value > 1
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user