Skip to content

koshkarik/Game-Of-Life

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Conway's Game of Life

Game of Life project built for freeCodeCamp's data visualization certificate using React and Sass. The game is a cellular automaton devised by John Conway.

The game is played on a grid, with each cell in one of two states "dead" or "alive". The rules are:

  1. Any live cell with fewer than two live neighbors dies.
  2. Any live cell with two or three live neighbors lives on to the next generation.
  3. Any live cell with greater than three live neighbors dies.
  4. Any dead cell with exactly three live neighbors becomes a live cell.

In my implementation of the game you can change the size of the board and also change speed.

More information about Convay's game of life on wiki

See my project live on CodePen

This project was bootstrapped with Create React App.

About

Conway's game of life built with react and redux

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published