diff options
author | kaiwu <kaiwu2004@gmail.com> | 2022-12-10 12:39:25 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2022-12-10 12:39:25 +0800 |
commit | 9081328b9a158c447ee7f23eaa45ff235250f9a6 (patch) | |
tree | 265ccb346950deee27102065ef0c99d13bde93a0 /src/2015/day24/aoc.cpp | |
parent | 5c7e66af79b30151964ed1469dc4bc83a8bf0043 (diff) | |
download | advent-of-code-9081328b9a158c447ee7f23eaa45ff235250f9a6.tar.gz advent-of-code-9081328b9a158c447ee7f23eaa45ff235250f9a6.zip |
2015 day24 setup
Diffstat (limited to 'src/2015/day24/aoc.cpp')
-rw-r--r-- | src/2015/day24/aoc.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/2015/day24/aoc.cpp b/src/2015/day24/aoc.cpp new file mode 100644 index 0000000..8115c87 --- /dev/null +++ b/src/2015/day24/aoc.cpp @@ -0,0 +1,9 @@ +#include "aoc.h" +#include <vector> + +namespace aoc2015 { + +std::pair<int, int> day24(line_view file) { + return {0, 0}; +} +} |