Remove general problem and solution from generator object

This commit is contained in:
lukew3
2021-10-02 23:52:10 -04:00
parent a6dbd2cf9f
commit 6b35cbb452
114 changed files with 78 additions and 186 deletions

View File

@@ -11,6 +11,6 @@ def DecimalToBinaryFunc(max_dec=99):
return problem, solution
decimal_to_binary = Generator("Decimal to Binary", 14, "Binary of a=", "b",
decimal_to_binary = Generator("Decimal to Binary", 14,
DecimalToBinaryFunc,
["max_dec=99"])