Euler txt files now follow naming convention
This commit is contained in:
@@ -3,7 +3,7 @@ from lib_a_star import A_Star
|
||||
|
||||
|
||||
def get_grid():
|
||||
with open("../txt/EulerProblem081.txt", "r") as f:
|
||||
with open("../txt/e081.txt", "r") as f:
|
||||
grid = list(map(lambda line: list(map(int, line.split(","))),
|
||||
f.readlines()))
|
||||
return grid
|
||||
|
||||
Reference in New Issue
Block a user