Out of order but localized

This commit is contained in:
lukew3
2020-10-19 20:33:18 -04:00
parent 5f2a5ab236
commit 84cb84a21c
83 changed files with 395 additions and 241 deletions

View File

@@ -21,3 +21,7 @@ def primeFactorsFunc(minVal=1, maxVal=200):
problem = f"Find prime factors of {a}"
solution = f"{factors}"
return problem, solution
primeFactors = Generator("Prime Factorisation", 27, "Prime Factors of a =",
"[b, c, d, ...]", primeFactorsFunc)