autopushed

This commit is contained in:
2023-10-15 03:44:21 +02:00
parent ed3548c4c2
commit 7c468f4984
+1 -1
View File
@@ -39,7 +39,7 @@ def is_prime(n):
# I wrote >= here initially. That did *not* work ;)
if i * j > n:
break
PROOF.append(f"{i*j} is composite: [[{i}]] * [[{j}]].")
PROOF.append(f"[[{i*j}]] is composite: {i} * {j}.")
try:
sieve[i*j] = False
except IndexError: