From afe53a956488c108baa3c2044d211117ec8ddf35 Mon Sep 17 00:00:00 2001 From: Tianyi Zheng Date: Mon, 31 Jul 2023 14:13:40 -0700 Subject: [PATCH] Update cellular_automata/game_of_life.py --- cellular_automata/game_of_life.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cellular_automata/game_of_life.py b/cellular_automata/game_of_life.py index f2ce09440..8127c2bd2 100644 --- a/cellular_automata/game_of_life.py +++ b/cellular_automata/game_of_life.py @@ -60,7 +60,7 @@ def run(canvas): @returns: -- - List + canvas of population after one step """ canvas = np.array(canvas) next_gen_canvas = np.array(create_canvas(canvas.shape[0]))