Moved problems till 56 to Python.

This commit is contained in:
2019-07-17 21:29:59 -04:00
parent 301033d17d
commit c624e6ac52
23 changed files with 417 additions and 23 deletions

View File

@@ -1,5 +1,5 @@
FROM = 56
TILL = 66
FROM = 68
TILL = 68
template = """
def euler_XXX():
@@ -12,7 +12,7 @@ if __name__ == "__main__":
"""
for i in range(FROM, TILL):
for i in range(FROM, TILL + 1):
e = "0" + str(i)
filename = "e" + e + ".py"
with open(filename, "w") as f: