diff options
Diffstat (limited to '')
-rw-r--r-- | 2018/day17.c | 3 |
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); } |