If you want to punish yourself: Heres an oscillato...
# advent-of-code
j
If you want to punish yourself: Heres an oscillator whose cycle starts at 2 and ends at 4, and glides off to positive infinity.
Copy code
initial state: ##.##..#

..... => .
....# => .
...#. => .
...## => .
..#.. => #
..#.# => .
..##. => .
..### => .
.#... => .
.#..# => .
.#.#. => .
.#.## => .
.##.. => .
.##.# => .
.###. => .
.#### => .
#.... => #
#...# => .
#..#. => .
#..## => .
#.#.. => .
#.#.# => .
#.##. => .
#.### => .
##... => .
##..# => .
##.#. => .
##.## => #
###.. => .
###.# => .
####. => .
##### => .
k
I'm glad they didn't have this as the challenge!