aoc24: add day16
This commit is contained in:
@@ -24,11 +24,13 @@ auto entry([[maybe_unused]]std::span<char const*> const& args) -> std::expected<
|
||||
// case 4: return day04(args);
|
||||
case 5: return day05(args);
|
||||
case 6: return day06(args);
|
||||
case 7: return day07(args);
|
||||
// case 7: return day07(args);
|
||||
case 8: return day08(args);
|
||||
case 9: return day09(args);
|
||||
case 10: return day10(args);
|
||||
// case 11: return day11(args);
|
||||
case 14: return day14(args);
|
||||
case 16: return day16(args);
|
||||
default:
|
||||
return aoc::make_error(fmt::format("day {}", day), std::errc::not_supported);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user