aboutsummaryrefslogtreecommitdiff
path: root/src/2015/day2/aoc.h
blob: 72402cf80107cef63e1050d598ab17599de0c3cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

#include "common.h"

namespace aoc2015 {

struct box {
  int l;
  int w;
  int h;
};

box parse_day2(line_view lv);
int min_day2(box);
int surface(box);
int day2(line_view);

} // namespace aoc2015