15 lines
337 B
C++
15 lines
337 B
C++
|
#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
|