feat: solucao isPrime

This commit is contained in:
Rafael Sampaio de Oliveira 2022-10-28 10:04:23 -03:00
parent c6f6df9c59
commit 8d311cb1e5

View File

@ -1,4 +1,8 @@
export function isPrime(value) {
// implementar logica aqui
}
for (let i = 2; i < value; i++)
if (value % i === 0) {
return false;
}
return value > 1;
}