From eb617e6d59addc9a0a3388b026c16ce8f212f9e8 Mon Sep 17 00:00:00 2001 From: Michael Pilosov Date: Thu, 9 May 2024 17:38:23 -0600 Subject: [PATCH] update --- snake.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snake.py b/snake.py index 63a9c57..80e16a6 100644 --- a/snake.py +++ b/snake.py @@ -10,7 +10,7 @@ def main(stdscr): stdscr.timeout(100) # Refresh rate # Initialize the board - h, w = 20, 40 # Board dimensions + h, w = 40, 80 # Board dimensions board = np.zeros((h, w), dtype=int) snake = [(h // 2, w // 2)] board[h // 2, w // 2] = 1