remove WriteLine

This commit is contained in:
Colin McMillen 2020-11-18 18:32:24 -05:00
parent e7faccb57d
commit b5df60b5f8

View File

@ -57,7 +57,6 @@ namespace Euler {
primes.Add(2);
for (int i = 3; i <= num; i += 2) {
if (IsPrime(i, primes)) {
WriteLine(i);
primes.Add(i);
}
}