Conway’s Game of Life (Python)
I recently ran across this problem in Codewars which boiled down to manipulating lists of lists in Python. The objective is to show the end results of the pixels according to the rules of Conway’s Game of Life. Each list contain the same number of elements which are 1s and 0s which represent on/off pixels Read more about Conway’s Game of Life (Python)[…]