/conway_gameoflife

Conway’s Game of Life is a simulation game created by the late John Horton Conway in 1970. The “board” is a 2D grid of cells. Cells can be either dead or alive. The player chooses a starting arrangement of live and dead cells and then begins the simulation. At each iteration, we compute the next state of the board based on the number of live and dead neighbors each cell has.

Primary LanguagePython

This repository is not active