forked from M3-Academy/challenge-algorithms-v2.0
feat: cria algoritmo que retorne se o numero passado é primo ou não.
This commit is contained in:
parent
5a8fa6be43
commit
b3864e812b
@ -1,4 +1,11 @@
|
|||||||
export function isPrime(value) {
|
export function isPrime(value) {
|
||||||
// implementar logica aqui
|
// implementar logica aqui
|
||||||
|
|
||||||
|
let numberOfDivisors = 0
|
||||||
|
for (let i = 1; i <= value; i++) {
|
||||||
|
if ((value % i) === 0) {
|
||||||
|
numberOfDivisors++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return (numberOfDivisors === 2) ? true : false
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user