From 7c468f49843cf363f006d240d92dfafac41c2fef Mon Sep 17 00:00:00 2001 From: Flancian <0@flancia.org> Date: Sun, 15 Oct 2023 03:44:21 +0200 Subject: [PATCH] autopushed --- bin/prime.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/prime.py b/bin/prime.py index 9231012eb..8e26987cf 100755 --- a/bin/prime.py +++ b/bin/prime.py @@ -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: