From 8656c16a92be37d5f4c9ab0ecd056f4482060277 Mon Sep 17 00:00:00 2001 From: Lukas Hoffleit <lukas.hoffleit03@gmail.com> Date: Fri, 11 Apr 2025 09:49:02 +0200 Subject: [PATCH] Einfaches TTT-Repraesentation --- tictactoe.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 tictactoe.py diff --git a/tictactoe.py b/tictactoe.py new file mode 100644 index 0000000..4b849cf --- /dev/null +++ b/tictactoe.py @@ -0,0 +1,6 @@ +class TicTacToe(): + def __init__(self) -> None: + pass + + def calc_best_move(self) -> None: + pass -- GitLab