Call solutions in sorted order
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-12-05 14:41:55 +01:00
parent 29458b07a5
commit a4741f928d

View File

@@ -5,7 +5,7 @@ from os.path import isdir, isfile
from subprocess import run
for dir in [x for x in listdir('.') if isdir(x)]:
for dir in [x for x in sorted(listdir('.')) if isdir(x)]:
file = dir + '/' + dir + '.py'
input = dir + '/input.txt'
if isfile(file) and isfile(input):