My Game of Life is a Java implementation for Conway's Game of Life.
I have implemented Conway's Game of Life using a two-dimensional lists. I found difficulties expanding the universe while using a two-dimensional lists.
In this implementation, each cell knows their position. Expanding the universe become easier because I only need to search cell with the smallest and biggest position.
Use the Gradle Wrapper to run the tests.
./gradlew test
Use the Gradle Wrapper to run the tests.
./gradlew run