Solve problem 84 and clean up a little

This commit is contained in:
2021-03-23 14:42:57 -04:00
parent d0aeb219e1
commit b3301250c5
4 changed files with 143 additions and 27 deletions

View File

@@ -1,4 +1,4 @@
FROM = 77
FROM = 85
TILL = 85
template = """
@@ -7,8 +7,9 @@ def euler_XXX():
if __name__ == "__main__":
print("eXXX.py: " + str(euler_XXX()))
assert(euler_XXX() == 0)
solution = euler_XXX()
print("eXXX.py: " + str(solution))
assert(solution == 0)
"""