Skip to content

YofiY/GameOfLife

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 

Repository files navigation

Game of life python

Rules of the game: E = state of the cell (bool: 0 = dead, 1 = alive) S = number of alive cells (int: from 0 to 8)

if S = 3: E = 1

if S = 2: E = E

else: E = 0

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages