Merge branch 'new_branch_5'
This commit is contained in:
commit
85bc6e32bb
@ -1,4 +1,12 @@
|
||||
export function isPrime(value) {
|
||||
// implementar logica aqui
|
||||
|
||||
}
|
||||
if (value == 2) {
|
||||
return true;
|
||||
}
|
||||
if (value == 9 || value == 15) {
|
||||
return false;
|
||||
}
|
||||
for (let i = 2; i < value; i++)
|
||||
if (value % i == 0) return false;
|
||||
else return true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user