alexanmtz / game-of-life

My implementation of Conway's Game of Life for cellular automation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

game-of-life

My implementation of Conway's Game of Life for cellular automation

game

Conditions

  1. Any live cell with fewer than two live neighbors dies, as if caused by underpopulation.
  2. Any live cell with two or three live neighbors lives on to the next generation.
  3. Any live cell with more than three live neighbors dies, as if by overpopulation.
  4. Any dead cell with exactly three live neighbors becomes a live cell, as if by reproduction.

About

My implementation of Conway's Game of Life for cellular automation

License:Mozilla Public License 2.0


Languages

Language:JavaScript 99.3%Language:HTML 0.7%