Skip to content

The Game of Life consists of a collection of cells which, based on a few mathematical rules, can live, die or multiply. Depending on the initial conditions, the cells form various patterns throughout the course of the game.

License

Notifications You must be signed in to change notification settings

Thind-Lovepreet14/GameOfLife

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Conway's Game of Life

The Game of Life, also known simply as Life, is a cellular automaton devised by the British mathematician John Horton Conway in 1970

Rules

  1. Any live cell with fewer than two live neighbours dies, as if by underpopulation.

  2. Any live cell with two or three live neighbours lives on to the next generation.

  3. Any live cell with more than three live neighbours dies, as if by overpopulation.

  4. Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction.

Getting Started

  1. Pull down the repo.

  2. Use npm install to install all needed dependencies as listed by the package.json.

Built With

  • React - JavaScript library for building user interfaces

Author

License

This project is licensed under the MIT License - see the LICENSE.md file for details

About

The Game of Life consists of a collection of cells which, based on a few mathematical rules, can live, die or multiply. Depending on the initial conditions, the cells form various patterns throughout the course of the game.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published