Created
December 8, 2021 20:37
-
-
Save vijfhoek/33f98efc6ed7bb5a3bcbf97cd8078d07 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from std/strutils import split, parseInt | |
from std/sequtils import map, foldl | |
let numbers = readLine(stdin).split(',').map(parseInt) | |
var buckets: array[9, int] | |
for number in numbers: | |
buckets[number] += 1 | |
for i in 0..<256: | |
buckets[(i + 7) mod 9] += buckets[i mod 9] | |
if i == 79: | |
echo("part 1: ", buckets.foldl(a + b)) | |
echo("part 2: ", buckets.foldl(a + b)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment