project-euler-100

[RADIOACTIVE] solutions to the first 100 challenges of project euler
git clone git://git.figbert.com/project-euler-100.git
Log | Files | Refs | README

commit f5a722028f3efea824a7df46e4cc76010514b5bd
parent fb2c1588073ceba757086d8120fc6ac5e944553b
Author: therealFIGBERT <figbertwelner@gmail.com>
Date:   Sat, 25 Jan 2020 12:48:48 -0800

Remove unnecessary imports and comments from the solution to problem 7

Diffstat:
Mproblem007.py | 2--
1 file changed, 0 insertions(+), 2 deletions(-)

diff --git a/problem007.py b/problem007.py @@ -3,8 +3,6 @@ # solutionBy = "FIGBERT" # language = "Python" # dateCompleted = "24/01/2020" -# https://en.wikipedia.org/wiki/Sieve_of_Eratosthenes -import math def sieveOfEratosthenes(limit): prime = [True for _ in range(limit+1)]