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

namespace aoc2022 {

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