Skip to content

Conway's Game of Life implementation using Python

Notifications You must be signed in to change notification settings

hitarth64/Game_Of_Life

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 

Repository files navigation

Game_Of_Life

Conway's Game of Life, GoL implementation using Python

Following are the rules:

  • Any live cell with fewer than two live neighbours dies, as if caused 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.

24th April 2018:

  • Uploaded a basic version of Game Of Life (GoL)

About

Conway's Game of Life implementation using Python

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages