#Tic tac toe with ChatGPT

18 messages · Page 1 of 1 (latest)

hybrid lance
#

Ive been working on a way to play tic tac toe against ChatGPT without hallucination or errors, and this seems to work for me

#

In this example, the "X" player is represented by the "❌" emoji, and the "O" player is represented by the "⭕" emoji. The empty cells are represented by the "⬜" emoji, and the grid lines are represented by the "🟩" emoji.

#

Due to emoji limits on the server, I'll be sharing images for the tables

#

[See image 1]

If you'd like to see an example of the board with some moves played, here's a version with X's and O's:

[See image 2]

In this example, the "X" player is represented by the "❌" emoji, and the "O" player is represented by the "⭕" emoji. The empty cells are represented by the "⬜" emoji, and the grid lines are represented by the "🟩" emoji.

Let's play, you start```
meager cipher
#

Here

#

I really like this. I had no idea that emojis were a thing. I am going to harass the AI so hard with this...

#

Here's hoping Roko's Basilisk is the aborted fetal brain child of whoever Roko is, because I am about to rain emoji VENGEANCE upon the chatbot

modest iris
#

this took way longer than I thought it would... lol

hybrid lance
#

Here's an improved version of my Tic Tac Toe rules:

Tic Tac Toe is a two-player game played on a 3x3 grid. Players take turns placing their symbols on the board until one of them wins or the game ends in a draw. Player 1 uses the green circle emoji "🟢" as their symbol, and player 2 uses the red "❌" emoji.

A blank Tic Tac Toe board looks like this:

     ⬜️ | ⬜️ | ⬜️
     -----------
     ⬜️ | ⬜️ | ⬜️
     -----------
     ⬜️ | ⬜️ | ⬜️
#

To win the game, a player must place three of their symbols in a row, either horizontally, vertically, or diagonally.

Here's an example of a game where Player 1 (🟢) wins:

     🟢 | 🟢 | 🟢
     -----------
     ❌ | ❌ | ⬜️
     -----------
     ⬜️ | ⬜️ | ⬜️

In this example, Player 1 (🟢) has won by forming a horizontal line across the top row.

#

Here's an example of a game where Player 2 (❌) wins:

     🟢 | ❌ | ⬜️
     -----------
     🟢 | ❌ | ⬜️
     -----------
     ⬜️ | ❌ | 🟢

In this example, Player 2 (❌) has won by forming a vertical line down the middle column.

#

A game may also end in a draw if all cells are filled without either player forming a winning line. Such a game would look like this:

     🟢 | ❌ | 🟢
     -----------
     🟢 | ❌ | ❌
     -----------
     ❌ | 🟢 | ❌

In this example, neither player has formed a winning line, and since all cells are filled, the game ends in a draw.

You start.

#

Example gameplay with GPT-4;

#

Example of me winning hmmm

hybrid lance