diff options
author | kaiwu <kaiwu2004@gmail.com> | 2022-12-14 17:42:36 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2022-12-14 17:42:36 +0800 |
commit | c277bc6e370bc5ee8899055a112978c76c1e7b19 (patch) | |
tree | 9248639ece99a264d0511670b79bbc6d77c7e950 /src | |
parent | 0b9455faebaf32549f0524a93d24bcadb06dfc24 (diff) | |
download | advent-of-code-c277bc6e370bc5ee8899055a112978c76c1e7b19.tar.gz advent-of-code-c277bc6e370bc5ee8899055a112978c76c1e7b19.zip |
2022 day15 setup
Diffstat (limited to 'src')
-rw-r--r-- | src/2022/day15/README.md | 0 | ||||
-rw-r--r-- | src/2022/day15/aoc.cpp | 9 | ||||
-rw-r--r-- | src/2022/day15/aoc.h | 8 | ||||
-rw-r--r-- | src/2022/day15/input | 0 | ||||
-rw-r--r-- | src/2022/day15/input0 | 0 | ||||
-rw-r--r-- | src/CMakeLists.txt | 1 |
6 files changed, 18 insertions, 0 deletions
diff --git a/src/2022/day15/README.md b/src/2022/day15/README.md new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/src/2022/day15/README.md diff --git a/src/2022/day15/aoc.cpp b/src/2022/day15/aoc.cpp new file mode 100644 index 0000000..6e2d7a7 --- /dev/null +++ b/src/2022/day15/aoc.cpp @@ -0,0 +1,9 @@ +#include "aoc.h" + +namespace aoc2022 { + +std::pair<int, int> day15(line_view) { + return {0, 0}; +} +} + diff --git a/src/2022/day15/aoc.h b/src/2022/day15/aoc.h new file mode 100644 index 0000000..eac13eb --- /dev/null +++ b/src/2022/day15/aoc.h @@ -0,0 +1,8 @@ +#include "common.h" +#include <vector> + +namespace aoc2022 { + +std::pair<int, int> day15(line_view); +} + diff --git a/src/2022/day15/input b/src/2022/day15/input new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/src/2022/day15/input diff --git a/src/2022/day15/input0 b/src/2022/day15/input0 new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/src/2022/day15/input0 diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 37ad6e6..03f1486 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -99,6 +99,7 @@ set(SOLUTION_FILES "2022/day12/aoc.cpp" "2022/day13/aoc.cpp" "2022/day14/aoc.cpp" + "2022/day15/aoc.cpp" ) add_library(solution SHARED ${SOLUTION_FILES}) |