Skip to content

Instantly share code, notes, and snippets.

@vijfhoek
Created December 8, 2021 20:37
Show Gist options
  • Save vijfhoek/33f98efc6ed7bb5a3bcbf97cd8078d07 to your computer and use it in GitHub Desktop.
Save vijfhoek/33f98efc6ed7bb5a3bcbf97cd8078d07 to your computer and use it in GitHub Desktop.
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