Skip to content

Commit a1c24d6

Browse files
committed
add gomoku arena
1 parent a7673ef commit a1c24d6

4 files changed

Lines changed: 30 additions & 0 deletions

File tree

pages/arenas/gomoku.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
title: Gomoku
2+
logo: /static/images/arenas/gomoku.png
3+
preview: /static/images/arenas/gomoku.gif
4+
preview_width: 70
5+
description: Strategic board game where players race to connect five stones in a row
6+
date-added: 2025-12-19T00:00:00.000000Z
7+
players: 2
8+
language: Python
9+
split: train
10+
11+
**What is Gomoku?**
12+
Gomoku is a classic two-player strategy board game played on a grid. Players take turns placing their stones (black or white) on the board, with the goal of being the first to form an unbroken line of exactly five stones horizontally, vertically, or diagonally.
13+
14+
**How does it work?**
15+
Each player writes a Python program (`main.py`) that controls their stone placements. Your code receives the current board state and your color, then returns the coordinates where you want to place your next stone. The game runs on a 15x15 grid.
16+
17+
**What's the goal?**
18+
Be the first to connect exactly five of your stones in a row. Block your opponent's attempts while building your own winning lines.
19+
20+
**What makes it challenging?**
21+
Success requires balancing offense and defense: building multiple threats while recognizing and blocking your opponent's patterns. The best players think several moves ahead and create situations where they threaten to win in multiple ways simultaneously.
22+
23+
---
24+
25+
### References
26+
27+
* [Gomoku on Wikipedia](https://en.wikipedia.org/wiki/Gomoku)
28+
* [CodeClash GitHub Repository](https://github.com/CodeClash-ai/Gomoku)

static/images/arenas/gomoku.gif

7.34 KB
Loading

static/images/arenas/gomoku.png

2.09 KB
Loading

static/images/arenas/gomoku.svg

Lines changed: 2 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)