blob: c270cfd9c80270eb792ecf7a138bee45ef7ac266 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#include <print>
#include <iostream>
#include <ranges>
#include <algorithm>
#include <utility>
#include <vector>
#include <map>
#include <unordered_map>
#include <set>
#include <unordered_set>
#include <numeric>
namespace views = std::views;
namespace ranges = std::ranges;
const auto parse_input() {
}
void part1(const auto &input) {
}
void part2(const auto &input) {
}
int main() {
const auto input = parse_input();
#ifndef NO_PART1
part1(input);
#endif
#ifndef NO_PART2
part2(input);
#endif
return 0;
}
|