Game of Life

"The Game of Life" is a classic cellular automaton game invented by mathematician John Conway. There are no players per se - the game evolves based on its initial setup. Below is a simple Python code implementing the "Game of Life" with numpy & matplotlib: import numpy as np import matplotlib.pyplot as plt import matplotlib.animation Read More »