Skip to content

A python implementation of Conway's game of life

Notifications You must be signed in to change notification settings

n-arms/game-of-life

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 

Repository files navigation

game-of-life

A python implementation of Conway's game of life, a simulation where there are a number of tiles arranged in a grid, each tile is in 1 of two states, and tiles evolve over time based off of their neighbours.

The exact rules are as follows:

  • Every cell is either living or dead
  • A live cell dies if it has less than 2 or more than 3 neighbours
  • If a dead cell has exactly 3 neighbours it becomes alive

About

A python implementation of Conway's game of life

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages