no, it was fine. probably a web interface bug?

This commit is contained in:
ilikecats 2024-07-05 17:10:00 -07:00
parent 350d511cc6
commit 5ba1c71dc1

View File

@ -14,8 +14,8 @@ int main() {
notprime = false;
for (unsigned int i=0;i<primes.size();++i) {
if (nextnumber % primes[i] == 0) {
notprime = true;
break;
notprime = true;
break;
}
}
if (!notprime) {