0
0
AdventOfCode2023/pb_2/problem_2.hpp

15 lines
337 B
C++
Raw Normal View History

2024-06-05 16:30:59 +02:00
#ifndef ADVENTOFCODE2023_PROBLEM_2_HPP
#define ADVENTOFCODE2023_PROBLEM_2_HPP
#include <filesystem>
namespace pb2 {
namespace fs = std::filesystem;
std::size_t problem_part1(const fs::path &problemFile) noexcept;
std::size_t problem_part2(const fs::path &problemFile) noexcept;
}
#endif //ADVENTOFCODE2023_PROBLEM_2_HPP