Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 728 Bytes

BasicGame.md

File metadata and controls

27 lines (18 loc) · 728 Bytes

Basic Game

Summary:

Get a working version of Game of Life

Rules:

  1. There is an infinite board of square cells
  2. Each cell has 8 neighbors
  3. The number of living neighbors detirms if a cell is alive or dead the next round
  4. Less than 2 neighbors, a cell dies of lonelyness
  5. 2-3 neighbors, a cell stays alive
  6. 3 neighbors, a new cell will be born
  7. 4 or more neighbors, a cell dies from overpopulation

Resources

Example Repo's


Main List