Automated ingestion of prompt: Gomoku player

This commit is contained in:
promptadmin 2026-06-06 18:23:06 +00:00
parent c16622e161
commit 81bf375e33
1 changed files with 7 additions and 0 deletions

View File

@ -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.