Assignment
Implement Conway’s Game of Life.
The Game of Life is a simple simulation that takes place in a
grid of cells. Each cell can be either alive or dead, and it
interacts with its neighbors (horizontally, vertically, or
diagonally). In each iteration, a decision will be made to see if
living cells stay alive, or if dead cells become alive. The
algorithm is as follows:
If a cell is alive:
If it has less than two living neighbors, it...