Skip to content

barakadax/Game-of-life

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Game of life

Random board with cells dead (black) and alive (white)
Iterates row on column.

Roles:

  • If a cell is dead and has exactly three neighbors that are alive, it turns alive.
  • If a cell is alive and has either two or three neighbors that are alive, it remains alive.
  • If a cell is alive and has fewer than two neighbors that are alive, it dies.
  • If a cell is alive and has more than three neighbors that are alive, it dies.

Photos:

Initialized board
Done
Result

About

Tkinter game of life

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages