Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 549 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 549 Bytes

Conway's Game of Life in Python

Very simple implementation of Conway's Game of Life Algorithm.

The initial state of the grid is generated at random

Screenshot

Create and activate virtual environment

python3 -m venv .venv && source .venv/bin/activate

Install dependencies

pip install -r requirements.txt

Run simulation

python src/cli.py simulate --tick-interval 1 --grid-size 20

Try diferent grid sizes and tick intervals. Enjoy.