development #11

Merged
Daniel_Moliari_Barbosa merged 20 commits from development into master 2022-10-28 19:36:26 +00:00
Showing only changes of commit 086347f178 - Show all commits

View File

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