/GameOfLife

Conway's Game of Life in C++

Primary LanguageC++MIT LicenseMIT

GameOfLife

Conway's Game of Life in C++

Rules

  • Any live cell with two or three live neighbors survives.
  • Any dead cell with three live neighbors becomes alive.
  • All other live cells die in the next generation. Similarly, all other dead cells stay dead.