diff options
author | kaiwu <kaiwu2004@gmail.com> | 2022-12-08 14:27:46 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2022-12-08 14:27:46 +0800 |
commit | b2004336e7a9971b969de0302cf58af2d08c052a (patch) | |
tree | a34bb524dc2fd2ee17cade10bbec749e383dbaa0 /src/2022/day9/aoc.cpp | |
parent | c3a3e3fe4f98931a1de9ea198119a1f0bf71a320 (diff) | |
download | advent-of-code-b2004336e7a9971b969de0302cf58af2d08c052a.tar.gz advent-of-code-b2004336e7a9971b969de0302cf58af2d08c052a.zip |
2022 day9 setup
Diffstat (limited to 'src/2022/day9/aoc.cpp')
-rw-r--r-- | src/2022/day9/aoc.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/2022/day9/aoc.cpp b/src/2022/day9/aoc.cpp new file mode 100644 index 0000000..8122f1e --- /dev/null +++ b/src/2022/day9/aoc.cpp @@ -0,0 +1,8 @@ +#include "aoc.h" + +namespace aoc2022 { +std::pair<int,int> day9(line_view file) { + return {0, 0}; +} + +} |