AleFeri
Conway Game of Life
A Python-based implementation of Conway’s Game of Life
Screenshot

Conway’s Game of Life is a cellular automaton devised by mathematician John Conway. It consists of a grid of cells that can either be “alive” or “dead.” With each generation, cells update their state based on a few simple rules related to the number of live neighbors they have—simulating birth, survival, or death. Despite its simplicity, these rules can lead to surprisingly complex and unpredictable patterns over time.

Stack

Python