save progress

This commit is contained in:
Lukas Werner
2022-06-05 22:01:42 -07:00
parent 5da06d3330
commit 6446c86686
14 changed files with 13137 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
num = 600_851_475_143
#num = 13195
primes = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97]
for i in range(100, 40000):
for j in primes:
if i % j == 0:
break
else:
primes.append(i)
print("Got Primes")
working_primes = []
for i in primes:
dividend = num / i
#if float(dividend).is_integer():
# working_primes.append(i)
if str(float(dividend)).split(".")[1] == "0":
working_primes.append(i)
print(working_primes)