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

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