forked from M3-Academy/challenge-algorithms-v2.0
Merge pull request 'feat(challenge-5): completed challenge' (#5) from feature/challenge-5 into develop
Reviewed-on: #5
This commit is contained in:
commit
2814f545d4
@ -1,4 +1,12 @@
|
||||
export function isPrime(value) {
|
||||
// implementar logica aqui
|
||||
if (!value) return 0;
|
||||
|
||||
for(let i = 2; i < value; i++){
|
||||
if(value % i === 0){
|
||||
return false
|
||||
}
|
||||
}
|
||||
|
||||
return true
|
||||
}
|
Loading…
Reference in New Issue
Block a user