aoc24: add day10

This commit is contained in:
2024-12-10 17:45:40 +01:00
parent c175b4ebc4
commit 521b3dc806
12 changed files with 174 additions and 6 deletions

View File

@@ -6,7 +6,7 @@ namespace rbr {
}
auto aoc24::day07([[maybe_unused]]std::span<char const*> const& args) -> std::expected<void, aoc::error> {
auto res = aoc::read_text("./dat/24/re/07.txt");
auto res = aoc::read_text("./dat/24/ex/07.txt");
if (!res) return std::unexpected(res.error());
auto const txt = *res;