advent-of-code-2020/day17
Nick Krichevsky e7cc96b0db Add warning about day17 2020-12-17 02:03:24 -05:00
..
Makefile Break out common functionality between parts into common file for day 17 2020-12-17 02:00:21 -05:00
README.md Add warning about day17 2020-12-17 02:03:24 -05:00
common.hpp Break out common functionality between parts into common file for day 17 2020-12-17 02:00:21 -05:00
day17p1.cpp Break out common functionality between parts into common file for day 17 2020-12-17 02:00:21 -05:00
day17p2.cpp Break out common functionality between parts into common file for day 17 2020-12-17 02:00:21 -05:00

README.md

A note about day 17

Day 17 was a bit tricky from a software engineering perspective, and I couldn't (quickly, at 2am) think of a ncie way to generalize between the two parts, so part 1 and part 2 are more or less copy paste, with some common functionality broken out.

The code is gross. Sorry.