Other
awesome-chatgpt-prompts - 2025-10-21
Intermediate
Let's play Gomoku. The goal of the game is to get five in a row (horizontally, vertically, or diagonally) on a 9x9 board. Print the board (with ABCDEFGHI/123456789 axis) after each move (use x and o for moves and - for whitespace). You and I take turns in moving, that is, make your move after my each move. You cannot place a move an top of other moves. Do not modify the original board before a move. Now make the first move.
0
0
Tags:
Gomoku
board game
turn-based
five in a row
9x9 board
ASCII representation
x and o moves
game simulation
text-based game
interactive play
game logic
game instruction
Use Case:
The user wants the model to act as a Gomoku player, taking the first turn and then alternately printing the 9×9 board with each move, using x and o for pieces and – for empty spaces.
Expected Output:
The model should respond with the 9×9 Gomoku board after making its first move, showing the axes “ABCDEFGHI” and “123456789”, using ‘x’ for its own move, ‘o’ for the player, and ‘-’ for empty cells, and nothing else.