From d5c2821d589ef36f885bb4f92a6d6ca0bc4cc0e7 Mon Sep 17 00:00:00 2001 From: Orfeas <38209077+0xfea5@users.noreply.github.com> Date: Wed, 27 Aug 2025 04:16:05 +0300 Subject: Add ‘skel/‘ as template directory for each day MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- skel/solution.cpp | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 skel/solution.cpp (limited to 'skel/solution.cpp') diff --git a/skel/solution.cpp b/skel/solution.cpp new file mode 100644 index 0000000..f268bff --- /dev/null +++ b/skel/solution.cpp @@ -0,0 +1,27 @@ +#include +#include + +const auto parse_input() { + +} + +void part1(const auto &input) { + +} + +void part2(const auto &input) { + +} + +int main() { + const auto input = parse_input(); + +#ifndef NO_PART1 + part1(input); +#endif \ + +#ifndef NO_PART2 + part2(input); +#endif + return 0; +} -- cgit v1.2.3