aboutsummaryrefslogtreecommitdiff
path: root/src/2022/day13/aoc.cpp
blob: 793d5eb6f3aed52d29e40568ec81f15a99ef6983 (plain)
1
2
3
4
5
6
7
8
9
#include "aoc.h"

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