Skip to content
This repository has been archived by the owner on Jul 23, 2023. It is now read-only.
/ game-of-life Public archive

John Conway's game of life made with React. Create an initial configuration and observe how it evolves.

Notifications You must be signed in to change notification settings

Jeusto/game-of-life

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Game of Life

John Conway's game of life made in React. Create an initial configuration and observe how it evolves.

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

Try it here: https://gol-conway.vercel.app/

demo

About

John Conway's game of life made with React. Create an initial configuration and observe how it evolves.

Resources

Stars

Watchers

Forks