aoc24: day07a complete

This commit is contained in:
2024-12-16 04:03:02 +01:00
parent 7ae660566e
commit 1108b8c65b
3 changed files with 117 additions and 3 deletions

View File

@@ -28,7 +28,7 @@ auto entry([[maybe_unused]]std::span<char const*> const& args) -> std::expected<
case 8: return day08(args);
case 9: return day09(args);
case 10: return day10(args);
case 11: return day11(args);
// case 11: return day11(args);
default:
return aoc::make_error(fmt::format("day {}", day), std::errc::not_supported);
}