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 2018 solutions within CI

+2
+2
.travis.yml
··· 1 1 language: python 2 2 python: "2.7" 3 3 env: 4 + - AOC_YEAR=2018 4 5 - AOC_YEAR=2017 5 6 - AOC_YEAR=2016 6 7 - AOC_YEAR=2015 7 8 matrix: 8 9 fast_finish: true 9 10 allow_failures: 11 + - env: AOC_YEAR=2017 10 12 - env: AOC_YEAR=2015 11 13 - env: AOC_YEAR=2016 12 14 script: ./advent.py $AOC_YEAR