// // Created by postaron on 06/12/23. // #ifndef ADVENTOFCODE2023_PROBLEM_1_HPP #define ADVENTOFCODE2023_PROBLEM_1_HPP #include namespace pb1 { namespace fs = std::filesystem; std::size_t solve_problem_part1(const fs::path& problemFile); std::size_t solve_problem_part2(const fs::path& problemFile); } #endif //ADVENTOFCODE2023_PROBLEM_1_HPP