From 890d50458cd9f00189ab19f0d1fa4e4b7e8a698d Mon Sep 17 00:00:00 2001 From: Orfeas <38209077+0xfea5@users.noreply.github.com> Date: Sat, 30 Aug 2025 12:59:31 +0300 Subject: skel/: include some useful headers in solution.cpp --- skel/solution.cpp | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/skel/solution.cpp b/skel/solution.cpp index f268bff..c270cfd 100644 --- a/skel/solution.cpp +++ b/skel/solution.cpp @@ -1,5 +1,17 @@ #include #include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +namespace views = std::views; +namespace ranges = std::ranges; const auto parse_input() { @@ -18,7 +30,7 @@ int main() { #ifndef NO_PART1 part1(input); -#endif \ +#endif #ifndef NO_PART2 part2(input); -- cgit v1.2.3