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.

Document test runner in README

+14 -1
+14 -1
README.md
··· 1 1 # advent 2 2 3 - My Advent of Code solutions. 3 + My [Advent of Code](https://adventofcode.com) solutions. 4 + 5 + 6 + ### Test Runner 7 + 8 + Under the request of the Advent of Code team, puzzle inputs and outputs 9 + are not being committed to this repo. However, I have written a small 10 + test runner for the puzzles. 11 + 12 + The runner assumes that the input for year `YYYY`, day `DD` is stored 13 + in `YYYY/inputs/DD.txt`, and that the expected output is present in 14 + `YYYY/outputs/DD.txt`. If both files are present, the file will be 15 + tested against the input; it passes if all lines in the output file 16 + are printed to stdout during the execution of the program.