mastodon.xyz is one of the many independent Mastodon servers you can use to participate in the fediverse.
A Mastodon instance, open to everyone, but mainly English and French speaking.

Administered by:

Server stats:

824
active users

.thomas

I've been solving some AoC 2021 puzzles with .

Did the dumbest possible queue for a BFS for day 15:

let queue = []
enqueue: append(queue, ...)
dequeue: queue[0]; delete(queue[0])

Dirt simple and probably not very efficient, but it Just Works™.