#include #include #include #include "aoc.hpp" #include "aoc/utils.hpp" #include "fmt/format.h" using namespace aoc::types; using namespace std::string_view_literals; namespace ebh { } auto aoc24::day14([[maybe_unused]]std::span const& args) -> std::expected { // auto res = aoc::read_text("./dat/24/ex/07.txt"); auto res = aoc::read_text("./dat/24/re/07.txt"); if (!res) return std::unexpected(res.error()); auto const txt = *res; return {}; }