From d4544e799705a29a06c5563db3ed4e6a92a5b318 Mon Sep 17 00:00:00 2001 From: Shritej KV <151450693+shritej1808@users.noreply.github.com> Date: Mon, 20 May 2024 11:46:45 +0530 Subject: [PATCH] Update tictactoe.py pushing changes --- AI Game/Tic-Tac-Toe-AI/tictactoe.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/AI Game/Tic-Tac-Toe-AI/tictactoe.py b/AI Game/Tic-Tac-Toe-AI/tictactoe.py index 6157ff6efb0..4010a83857a 100644 --- a/AI Game/Tic-Tac-Toe-AI/tictactoe.py +++ b/AI Game/Tic-Tac-Toe-AI/tictactoe.py @@ -1,6 +1,7 @@ import tkinter as tk #provides a library of basic elements of GUI widgets from tkinter import messagebox #provides a different set of dialogues that are used to display message boxes -import random +import random + def check_winner(board, player): # Check rows, columns, and diagonals for a win