aboutsummaryrefslogtreecommitdiff
path: root/src/2015/day2/aoc.h
blob: 66fe38418cd57e10b3ec01fc27762fb4fd065602 (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);
std::pair<int, int> day2(line_view);

} // namespace aoc2015