Euler txt files now follow naming convention

This commit is contained in:
2021-04-22 15:17:19 -04:00
parent 5be3b11e54
commit 7825acbd73
21 changed files with 11 additions and 10 deletions

View File

@@ -72,7 +72,7 @@ def add_single_digit(code, digit):
def euler_079():
tests()
with open("../txt/EulerProblem079.txt", "r") as f:
with open("../txt/e079.txt", "r") as f:
passcodes = sorted(list(set([line.strip() for line in f])))
codes = [""]