An open API service indexing awesome lists of open source software.

https://github.com/lorddarkula/gameoflife

Implementation of Conway's Game of life in Python using dictionaries
https://github.com/lorddarkula/gameoflife

conway-game dictionaries game-of-life life python tuples

Last synced: 8 months ago
JSON representation

Implementation of Conway's Game of life in Python using dictionaries

Awesome Lists containing this project

README

          

# Conway's Game of Life
Implementation of Conway's Game of life in Python using dictionaries. Cells stored
as a tuple of booleans, the first for whether the cell is alive (True) or dead (False),
and the second for whether the cell will be alive the next turn. Each key is a tuple
storing the coordinate ``(x, y)`` of the cell.