diff options
author | kaiwu <kaiwu2004@gmail.com> | 2023-01-28 15:37:53 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2023-01-28 15:37:53 +0800 |
commit | 40c88c7cb78203a1d5d4ff5c8be30baee9cb7d0b (patch) | |
tree | 7d37a0fc7012bbbdd261526aa8c7bf02f76601d0 | |
parent | 75ad85fc0a60392f2d5671670c6657ffd4bace74 (diff) | |
download | advent-of-code-40c88c7cb78203a1d5d4ff5c8be30baee9cb7d0b.tar.gz advent-of-code-40c88c7cb78203a1d5d4ff5c8be30baee9cb7d0b.zip |
2016 day24 part1
-rw-r--r-- | src/2016/day24/aoc.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/2016/day24/aoc.cpp b/src/2016/day24/aoc.cpp index 6642db2..f3d7912 100644 --- a/src/2016/day24/aoc.cpp +++ b/src/2016/day24/aoc.cpp @@ -57,6 +57,7 @@ std::pair<int64_t, int64_t> day24(line_view file) { }); std::vector<std::map<maze::pos, int>> vds; + // vds.resize(8); // input vds.resize(5); // demo for (auto &n: mz.numbers) { int i = mz.get(n.x, n.y) - '0'; |