Corrected a few C'isms and also added the solutions to four more problems

This commit is contained in:
MitchellHansen
2017-03-13 22:53:00 -07:00
parent 10b76d0ca6
commit 44358923e3
11 changed files with 183 additions and 7 deletions

View File

@@ -13,7 +13,7 @@ def isPrime(number):
return prime
i = 1;
i = 1
primeCount = 1
while (primeCount != 10001):
if isPrime(i):