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

namespace aoc2022 {

std::pair<int, int> day21(line_view) {
  return {0, 0};
}
}