2. A location with two neighbors is stableââ¬âthat is, if it contained a cell, it still contains a cell. If it was empty, its still empty.
3. A location with three neighbors will contain a cell in the next generation. If it was unoccupied before, a new cell is born. If it currently contains a cell, the cell remains. Good times.
4. A location with four or more neighbors will be empty in the next generation. If there was a cell in that location, it dies of overcrowding.
5. The births and deaths that transform one generation to the next must all take effect simultaneously. Thus, when computing a new generation, new births and 3 deaths in that generation donââ¬â¢t impact other births and deaths in that generation. To keep the two generations separate, you will need to work on two versions of the gridââ¬âone for the current generation, and a second that allows you to compute and store the next generation without changing the current one.
returns array of locations of neighbors
returns value of neighbor