aboutsummaryrefslogtreecommitdiff
path: root/src/2018/day9/aoc.cpp
blob: 7771b28dad237a318946e1e1ce8f2a2609de55a1 (plain)
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