Skip to content

canturk3/game-of-life

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 

Repository files navigation

game-of-life

Basic implementation of game of life in Python with pygame


Rules:

  • Any live cell with 0 or 1 live neighbors becomes dead, because of underpopulation
  • Any live cell with 2 or 3 live neighbors stays alive, because its neighborhood is just right
  • Any live cell with more than 3 live neighbors becomes dead, because of overpopulation
  • Any dead cell with exactly 3 live neighbors becomes alive, by reproduction

About

Basic implementation of game of life

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages