Skip to content

Latest commit

 

History

History
20 lines (20 loc) · 473 Bytes

readme.md

File metadata and controls

20 lines (20 loc) · 473 Bytes

Conway's Game of Life

Rules:


For a space that is 'populated':
Each cell with one or no neighbors dies, as if by solitude.
Each cell with four or more neighbors dies, as if by overpopulation.
Each cell with two or three neighbors survives.

For a space that is 'empty' or 'unpopulated':
Each cell with three neighbors becomes populated.

v1: basic speed control and placement is implemented