Join Slack
Communities
Powered by
I'll post my code later (after work, when I can cl...
# advent-of-code
t
todd.ginsberg
12/10/2019, 6:03 PM
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
Christoph Baudson
12/10/2019, 7:23 PM
Looking forward to it!
2
Views
Open in Slack
Previous
Next