The Game of Life is a two-dimensional grid of square cells, each of which is in one of two possible states, live or dead. Every cell interacts with its eight neighbors, which are the cells that are horizontally, vertically, or diagonally adjacent.
At each step in time, the following transitions occur:
File must be '.json', it must contain a single object in the format { "cells": [ [0, 1 , 1, 0],...,[1,1,1,1] ]} .Where 1 is an 'alive' cell, and 0 is a 'dead' cell. Each array represents a row of the game.