Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 663 Bytes

README.md

File metadata and controls

10 lines (8 loc) · 663 Bytes

Conways-game-of-life

Conways game of life is a 0 player game based on a grid where there are 2 options for colors of each cell, reperesenting either "alive" or "dead". where there are 4 rules.

  • Any live cell with fewer than two live neighbours dies, as if caused by underpopulation
  • Any live cell with two or three live neighbours lives on to the next generation
  • Any live cell with more than three live neighbours dies, as if by overpopulation
  • Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction

feel free to branch or contact me for any more information.