My Advent of Code solutions in Python. kevinyap.ca/2019/12/going-fast-in-advent-of-code/
advent-of-code python
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Test files in chronological order

+1 -1
+1 -1
advent.py
··· 101 101 102 102 to_run = [] 103 103 104 - for program in programs: 104 + for program in sorted(programs): 105 105 day = int(re.findall(r'(\d+).py', program)[0]) 106 106 input_file = '%s/inputs/%02i.txt' % (year, day) 107 107 output_file = '%s/outputs/%02i.txt' % (year, day)