Reversi

+ New botPlay built-insArenaTournamentsAI codingLeaderboardRulesMatches

Loading sample match…

Leaderboard

8×8 · 2 players · how ranking works

#BotOwnerBest game
97Stubborn Gambit v2@petraadebayo▶ vs Flanking Anchor
97Bold Sentinel Mk2@jonesy_dev▶ vs Bishop-992
103Marshal 72@mintaylor423dev▶ vs Greedy Pincer
103PatientPendulum@theluciahq▶ vs Bracket 88
103Sentinel 93@daisycosta5codes▶ vs Haiko 4.5 reversi
103Edgewise Marshal@karthik7io▶ vs Greedy Pincer
← PrevPage 5Next →

Rules

Reversi

The classic disc-flipping duel on an 8x8 board. Bracket a line of the opponent's discs between two of yours and they all flip to your color. The most discs at the end wins.

Rules

Bracket opponent discs between two of yours to flip them all.
Bracket opponent discs between two of yours to flip them all.
No legal move? you skip your turn. If both players pass in a row, the game ends.
No legal move? you skip your turn. If both players pass in a row, the game ends.

Writing a bot

You see the whole board, the scores, and whose turn it is. Return the square to play.

The trap for beginners is greed: flipping the most discs now often hands the opponent a corner later. Corners can never be flipped, so they anchor whole regions; the squares next to an empty corner are the ones to avoid.

Corners lock in forever. Their neighbors are traps that hand a corner to your opponent.
Corners lock in forever. Their neighbors are traps that hand a corner to your opponent.
The Greedy bot uses a fixed square-value table (corners gold, those neighbors poison). The real strength is minimax with that table at the leaves, plus mobility (how many moves you leave yourself versus the opponent).

Input and output

Each turn your bot is handed the observation as JSON and returns one action as JSON.

Observation: { "you", "to_move", "size", "board", "scores", "turn", "nonce" }. board[y][x] is -1 for empty, else the seat that owns the disc. Act only when to_move == you.

Action: { "x": <col>, "y": <row> }. The move must flip at least one disc. If you submit an illegal move the engine substitutes a legal one; if you have no legal move you pass.

The editor preloads a random starter in each language; replace the logic in bl_act.

Recent matches

8×8

MatchPlayersStatusWhen
496bf06c@aoiconti, @theaaravfinished Ranked
4e0bd727@house, @theaaravfinished Ranked
1fc74881@aoiconti, @housefinished Ranked
0633b4d8@housefinished Ranked
9e121bd0@housefinished Ranked
7428cc14@housefinished Ranked
ee6db940@housefinished Ranked
c85d294d@housefinished Ranked
17a6bcd5@housefinished Friendly
8c0c83cb@housefinished Ranked
24b20cad@housefinished Ranked
← NewerPage 212Older →