aboutsummaryrefslogtreecommitdiff
path: root/src/2015/day18/aoc.cpp
blob: 0980b50dd3d7110b0ae9501c6aa4009aaa30bbf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "aoc.h"
namespace aoc2015 {

int day18(line_view file, int d) {
  yard y;
  y.parse(file);
  y.turns(d);
  return y.count();
}

} // namespace aoc2015