aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkaiwu <kaiwu2004@gmail.com>2023-01-28 15:37:53 +0800
committerkaiwu <kaiwu2004@gmail.com>2023-01-28 15:37:53 +0800
commit40c88c7cb78203a1d5d4ff5c8be30baee9cb7d0b (patch)
tree7d37a0fc7012bbbdd261526aa8c7bf02f76601d0
parent75ad85fc0a60392f2d5671670c6657ffd4bace74 (diff)
downloadadvent-of-code-40c88c7cb78203a1d5d4ff5c8be30baee9cb7d0b.tar.gz
advent-of-code-40c88c7cb78203a1d5d4ff5c8be30baee9cb7d0b.zip
2016 day24 part1
-rw-r--r--src/2016/day24/aoc.cpp1
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';