Here's a concise README for Conway's Game of Life:
Conway’s Game of Life is a zero-player cellular automaton where cells evolve based on simple rules.
- Alive cells:
- Survive with 2 or 3 neighbors, otherwise die.
- Dead cells:
- Revive with exactly 3 neighbors.
Run a simulation with an initial grid, and watch patterns emerge over generations.
- Still lifes (stable patterns)
- Oscillators (repeat cycles)
- Gliders (move across the grid)