summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-12-22 02:09:37 -0500
committerJesse Luehrs <doy@tozt.net>2021-12-22 02:09:37 -0500
commit79e1ca080d68f6ad2a7b4aac1db4cbeff2cd6c61 (patch)
tree1767e9db35ba526cf84b3c9fffb06c47586d6c5d
parent5b7bc0fdcede628cb2a48e12fa07903b23daf790 (diff)
downloadadvent-of-code-79e1ca080d68f6ad2a7b4aac1db4cbeff2cd6c61.tar.gz
advent-of-code-79e1ca080d68f6ad2a7b4aac1db4cbeff2cd6c61.zip
remove debugging
-rw-r--r--src/2021/22/mod.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/2021/22/mod.rs b/src/2021/22/mod.rs
index 91f56f4..c225bfc 100644
--- a/src/2021/22/mod.rs
+++ b/src/2021/22/mod.rs
@@ -126,7 +126,6 @@ pub fn part2(reactor: Reactor) -> Result<i64> {
let mut total = 0;
for i in 0..(x.len() - 1) {
- eprintln!("{}", i);
for j in 0..(y.len() - 1) {
for k in 0..(z.len() - 1) {
if reactor.on(&Point3D::new(x[i], y[j], z[k])) {