Skip to content

eugene-sinitsyn/conways-game-of-life

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Conway's Game Of Life (Wikipedia article)

Rules:

  1. Births: Each dead cell adjacent to exactly three live neighbors will become live in the next generation.
  2. Survival: Each live cell with either two or three live neighbors will remain alive for the next generation.
  3. Death by isolation: Each live cell with one or fewer live neighbors will die in the next generation.
  4. Death by overcrowding: Each live cell with four or more live neighbors will die in the next generation.

Setup

  1. Clone the repository
  2. npm start

Output

Gosper Glider Gun

About

Conway's Game Of Life implemented with JavaScript & Node

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published