1 2 3 4 5 6 7 8 9 10 11
#include "aoc.h" namespace aoc2016 { int day8(line_view file) { grid<5, 6> g; g.set(2, 2); return 0; } } // namespace aoc2016