diff --git a/05-isPrime/index.js b/05-isPrime/index.js index ec9c4ac..8d664e1 100644 --- a/05-isPrime/index.js +++ b/05-isPrime/index.js @@ -1,4 +1,15 @@ export function isPrime(value) { // implementar logica aqui - -} \ No newline at end of file + let cont = 0; + for (let i = 1; i <= value; i++) { + if (value % i === 0) { + cont++; + } + } + if (cont === 2) { + // Se conseguiu fazer a divisão apenas por dois números + return true; + } else { + return false; + } +}