blob: 8216137e5c09c578354190119f79adaf2be94fcb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include "aoc.h"
namespace aoc2017 {
std::pair<int64_t, int64_t> day24(line_view file) {
std::vector<component> cs;
per_line(file, [&cs](line_view lv) {
cs.emplace_back(lv);
return true;
});
// for (auto& c: cs) {
// c.print();
// }
return {0, 0};
}
} // namespace aoc2017
|