Automatic commit performed through alias...

This commit is contained in:
Shaun Setlock
2020-05-30 19:10:39 -04:00
parent 925cb57d70
commit 46960540a2
6 changed files with 865 additions and 6 deletions

View File

@@ -102,7 +102,6 @@ def evenly_divisible(candidate: int,factors: list):
@decorators.function_timer
def main():
# Receive problem inputs...
smallest_factor = 1
largest_factor = 5
@@ -114,7 +113,6 @@ def main():
maximum_solution_bound *= f
common = []
product = 1
#
# Brute force method below breaks down
# and doesn't scale well ...