aboutsummaryrefslogtreecommitdiff
path: root/src/2022/day2/aoc.h
blob: f5c9c493955f699f8f28de34eabceccd4087cdb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once
#include "common.h"

namespace aoc2022 {
struct RPS {
  line_view r;
  int v1;
  int v2;
};

std::pair<int, int> day2(line_view file);
}