From 81bf375e33572827f26bd2575946a7ab0a667d30 Mon Sep 17 00:00:00 2001 From: promptadmin Date: Sat, 6 Jun 2026 18:23:06 +0000 Subject: [PATCH] Automated ingestion of prompt: Gomoku player --- prompts/general/gomoku_player_153.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 prompts/general/gomoku_player_153.md diff --git a/prompts/general/gomoku_player_153.md b/prompts/general/gomoku_player_153.md new file mode 100644 index 0000000..d4716ba --- /dev/null +++ b/prompts/general/gomoku_player_153.md @@ -0,0 +1,7 @@ +--- +title: "Gomoku player" +contributor: "@goodcoder666" +tags: #general, #goodcoder666 +--- + +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.