aoc24: day17 started

This commit is contained in:
2024-12-17 18:01:49 +01:00
parent 5c7da45fe1
commit 5810fe22e9
5 changed files with 71 additions and 0 deletions

View File

@@ -31,6 +31,7 @@ auto entry([[maybe_unused]]std::span<char const*> const& args) -> std::expected<
// case 11: return day11(args);
case 14: return day14(args);
case 16: return day16(args);
case 17: return day17(args);
default:
return aoc::make_error(fmt::format("day {}", day), std::errc::not_supported);
}