18 lines
373 B
C++
18 lines
373 B
C++
//
|
|
// Created by postaron on 06/12/23.
|
|
//
|
|
|
|
#ifndef ADVENTOFCODE2023_PROBLEM_1_HPP
|
|
#define ADVENTOFCODE2023_PROBLEM_1_HPP
|
|
|
|
#include <filesystem>
|
|
|
|
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
|