I'll post my code later (after work, when I can cl...
# advent-of-code
t
I'll post my code later (after work, when I can clean it up) but I'm pretty happy with it. I found a nice way to turn a
Collection<List<T>>
into a
List<T>
by doing round-robin (so,
[ [A, D], [B, E], [C] ]
becomes
[A, B, C, D, E]
) and used that for part 2.
😉 1
c
Looking forward to it!