Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 462 Bytes

README.md

File metadata and controls

9 lines (7 loc) · 462 Bytes

Implementation of Conway's Game of Life

https://conway-game-of-life.onrender.com

Rules (courtsey of wikipedia)

  • Any live cell with fewer than two live neighbours dies, as if 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 neigbours dies, as if by overpopulation.
  • Any dead cell with exactly three live neigbours becomes a live cell as if by reproduction.