summary refs log tree commit diff homepage
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-12-21 15:00:42 -0500
committerJune McEnroe <june@causal.agency>2020-11-22 00:14:26 -0500
commite6f8d30c6b0db6130951b47b37cc2e0ced3a1fde (patch)
treed67cfdbcc54b3f0949c3c6b3289fc1db503e807c
parent"Solve" day 17 part 1 (diff)
downloadaoc-e6f8d30c6b0db6130951b47b37cc2e0ced3a1fde.tar.gz
aoc-e6f8d30c6b0db6130951b47b37cc2e0ced3a1fde.zip
"Solve" day 17 part 2
-rw-r--r--2018/day17.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/2018/day17.c b/2018/day17.c
index d2fd02c..4128d2e 100644
--- a/2018/day17.c
+++ b/2018/day17.c
@@ -78,10 +78,13 @@ int main(void) {
 	draw();
 
 	uint count = 0;
+	uint settled = 0;
 	for (uint y = minY; y <= maxY; ++y) {
 		for (uint x = 0; x < 2048; ++x) {
 			if (map[y][x] != '.' && map[y][x] != '#') count++;
+			if (map[y][x] == '~') settled++;
 		}
 	}
 	printf("%u\n", count);
+	printf("%u\n", settled);
 }
ader'>2017-08-29Add four additional spawnsJune McEnroe 2017-08-28Add respawningJune McEnroe 2017-08-26Move license above includesJune McEnroe Why was it down there? 2017-08-26Snapshot metadataJune McEnroe 2017-08-26Add meta.c to READMEJune McEnroe 2017-08-26Use MakefileJune McEnroe