Game Of Life:
If you have successfully completed the random block program and written the draft for the algorithm in pseudocode, you should be able to get started with the game of life assignment.
Start small. Hardcode the seed for the glider:
Requirements:
1. Take as input the size of the grid.
2. Show the live cells in color other than black.
Challenges:
1. Take as input the coordinates for the seed. You must include in your documentation the coordinates for the glider seed.
2. Change the color of the dead cells to a faded color for at least one generation after dying.
3. Take as input the option to speed or slow down the simulation.