Skip to content

Commit

Permalink
brief
Browse files Browse the repository at this point in the history
  • Loading branch information
raganwald committed Dec 15, 2017
1 parent c25f835 commit 5dbce10
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions _posts/2017-12-14-73939133.md
Expand Up @@ -243,10 +243,9 @@ function isPrime(n) {
if (n % factor === 0) {
return false;
} else if (factor > squareRoot) {
break;
return true;
}
}
return true;
}
```

Expand Down

0 comments on commit 5dbce10

Please sign in to comment.