I used an accumulator function which folded over a...
# advent-of-code
a
I used an accumulator function which folded over an infinite sequence & only kept the star fields which have converged to a small size. I then just picked the one of these with the smallest size. Worked in this instance.
t
Very cool
a
Again wouldn't have worked if all the stars came from a Big Bang singularity and then passed through an arrangement of letters.
k
s.inc()
? That's
s + 1
, right? Cool solution!
a
More like s++, think of it as moving to the next step
k
Ah I missed that that was an operator on Star, I hough that was for keeping track of the iteration number.