From 87cb922084613c8e7ef8eff92b51fe25a8e689ba Mon Sep 17 00:00:00 2001 From: Mattrixwv Date: Thu, 1 Jul 2021 10:57:53 -0400 Subject: [PATCH] Fixed typeos --- Algorithms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Algorithms.py b/Algorithms.py index 8c110c0..90f6431 100644 --- a/Algorithms.py +++ b/Algorithms.py @@ -43,7 +43,7 @@ def primeGenerator(): dict[possiblePrime * possiblePrime] = [possiblePrime] #If possiblePrime is in the dictionary it is a composite number else: - #Move each witness to it's next multiple + #Move each witness to its next multiple for num in dict[possiblePrime]: dict.setdefault(num + num + possiblePrime, []).append(num) #We no longer need this, free the memory