11 lines
190 B
Python
11 lines
190 B
Python
import aoclib
|
|
import os
|
|
|
|
for _, _, files in os.walk(aoclib.BASE_PATH):
|
|
for f in files:
|
|
if f.startswith('day') and f.endswith('.py'):
|
|
exec(open(f).read())
|
|
|
|
break
|
|
|