Call solutions in sorted order
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user