From 5177c50661617ecf251406c04176591a825a6bcc Mon Sep 17 00:00:00 2001 From: Mehul-Gandhi Date: Fri, 20 Oct 2023 23:45:14 -0700 Subject: [PATCH] Remove table --- .../ttt.html | 30 +------------------ 1 file changed, 1 insertion(+), 29 deletions(-) diff --git a/cur/programming/python/object-oriented-programming-joshhug/ttt.html b/cur/programming/python/object-oriented-programming-joshhug/ttt.html index 63bbada1..35cc7331 100644 --- a/cur/programming/python/object-oriented-programming-joshhug/ttt.html +++ b/cur/programming/python/object-oriented-programming-joshhug/ttt.html @@ -22,35 +22,7 @@

TicTacToe Class Description

To win in Tic Tac Toe, a player must have three of their symbols (either X or O) consecutively in a row. This can be achieved in the following ways:

- - - - - - - - - - - - - - - - - -
ConditionDescription
Horizontal - - Top row
- - Middle row
- - Bottom row -
Vertical - - Leftmost column
- - Middle column
- - Rightmost column -
Diagonal - - From top-left to bottom-right
- - From top-right to bottom-left -
+

Methods to Implement