Automatic commit performed through alias...

This commit is contained in:
Shaun Setlock
2020-04-19 15:09:04 -04:00
parent 79107c467e
commit 86cfb9c88e
2 changed files with 121 additions and 2 deletions

View File

@@ -45,8 +45,10 @@ def primes_gen(start_n,max_n):
@decorators.function_timer
def main():
result1 = orig = 600851475143
returned_prime = prime_start = 2
orig = 600851475143
result1 = orig
prime_start = 2
returned_prime = prime_start
prime_factor_list = []
while returned_prime < orig ** 0.5 and returned_prime<result1: