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
|
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'
|
file = dir + '/' + dir + '.py'
|
||||||
input = dir + '/input.txt'
|
input = dir + '/input.txt'
|
||||||
if isfile(file) and isfile(input):
|
if isfile(file) and isfile(input):
|
||||||
|
|||||||
Reference in New Issue
Block a user