diff options
author | kaiwu <kaiwu2004@gmail.com> | 2022-12-11 17:41:18 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2022-12-11 17:41:18 +0800 |
commit | 1c3c2e3f8a72b7e2968f3583e8582333457e583a (patch) | |
tree | 46459a29d6e9db20e076d62c3a223000e7e7cb7b /src/2022/day12/aoc.cpp | |
parent | 76dbb441216d24856594d930e0d2140a07231e8a (diff) | |
download | advent-of-code-1c3c2e3f8a72b7e2968f3583e8582333457e583a.tar.gz advent-of-code-1c3c2e3f8a72b7e2968f3583e8582333457e583a.zip |
2022 day11
Diffstat (limited to 'src/2022/day12/aoc.cpp')
-rw-r--r-- | src/2022/day12/aoc.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/2022/day12/aoc.cpp b/src/2022/day12/aoc.cpp new file mode 100644 index 0000000..76a2384 --- /dev/null +++ b/src/2022/day12/aoc.cpp @@ -0,0 +1,9 @@ +#include "aoc.h" + +namespace aoc2022 { + +std::pair<int, int> day12(line_view file) { + return {0, 0}; +} + +} |