Skip to content

REACT + Spring Boot implementation of Conway's Game of Life

Notifications You must be signed in to change notification settings

patrickTumulty/GameOfLife

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GameOfLife

Very simple REACT + Spring Boot implementation of Conway's Game of Life

The Rules

Conway's game of life was devised by britich mathematician John Horton Conway in 1970. It is considered a zero-player due to the fact that the only required inputs is the initial board state.

The behavior of the cells are dictated from a couple very simple rules.

  1. Any live cell with two or three live neighbors survives.
  2. Any dead cell with three live neighbours becomes a live cell.
  3. Any other live cells die in the next generation.

You can read more about conways game of life here.

Video Demo

GameOfLife.mp4

About

REACT + Spring Boot implementation of Conway's Game of Life

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published