Zachary W. Huang
John Conway’s Game of Life needs no introduction (but here is one anyway). The Game of Life is a cellular automata consisting of a big grid of cells which can be either alive or dead.
The game begins with any arrangement of living and dead cells, and the game progresses with these two rules:
These simple rules can result in extremely complex and unpredictable behavior.
As a challenge for myself, I implemented the Game of Life in C++.