PUZZLE #4160: Game of Life Cipher (diff 4)
A 6x6 initial Game of Life pattern. Run 20 generations. Each row of the final grid, read as 6-bit binary mod 26, gives a letter (A=0). All 6 letters spell the answer.
DATA
| Initial Grid |
[0, 1, 1, 0, 1, 0], [0, 0, 1, 0, 0, 1], [0, 0, 0, 0, 0, 1], [0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0], [0, 1, 1, 0, 0, 1]
|
| Generations |
20
|
| Rows |
6
|
| Cols |
6
|
| Rules |
B3/S23 (Conway's Game of Life)
|
| Hint |
Simulate 20 generations of Conway's Game of Life on the 6x6 grid. Rules: live cell with 2-3 neighbors survives, dead cell with 3 neighbors becomes alive. After 20 gens, each row's 6-bit value mod 26 gives a letter (A=0).
|
| Answer Format |
lowercase word, no spaces (6 letters)
|
author's note: Pool fill: game-of-life diff 4
— website sponsored —
[ ad space ]