aboutsummaryrefslogtreecommitdiff
path: root/src/2022/day4/aoc.cpp
blob: 535a5df11a3761568f84b50b6ec645ac2d4293fb (plain)
1
2
3
4
5
6
7
8
9
10
#include "aoc.h"
#include <algorithm>
#include <vector>

namespace aoc2022 {
std::pair<int, int> day4(line_view file) {
  return {0, 0};
}

} // namespace aoc2022