1 2 3 4 5 6 7 8 9 10 11
#include "aoc.h" namespace aoc2018 { int day9(int players, int point) { marble_circle mc(point, players); mc.alloc(23); return mc.high(); } } // namespace aoc2018