From ed3548c4c2afb404f1c15af8a2372ad86181a738 Mon Sep 17 00:00:00 2001 From: Flancian <0@flancia.org> Date: Sun, 15 Oct 2023 03:39:53 +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 8e26987cf..9231012eb 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: