Reversi vs a real search engine
Black2
White2
Your move — place a black disc
0
Wins
0
Losses
0
Draws

Play Othello (Reversi) Online vs the Computer

Play the classic game of Othello — also known as Reversi — directly against the computer, free, in your browser, with no download and no sign-up. You play the black discs and move first; the AI plays white. Click one of the highlighted squares to place a disc and flip the white discs you trap. This is a single-player game built around an honest AI opponent: Beginner makes mistakes you can punish, Medium plays a solid positional game, and Hard runs an extremely strong search engine that thinks about a second per move. Legal moves are shown for you, the live disc count is always on screen, and your wins, losses and draws are tracked per difficulty.

How the AI thinks

The opponent here is not a set of canned tricks — it is a real game-tree search engine, the same family of algorithm used by classic chess and Othello programs. On every turn it generates the legal flipping moves, then runs negamax with alpha-beta pruning: it plays out possible futures for both sides, scores the resulting positions, and picks the move with the best guaranteed result, skipping branches that provably cannot matter. The scoring is what makes Othello hard: rather than just counting discs — which flip constantly and mislead beginners — it uses positional square weights (corners are gold, the squares next to them are traps), mobility (how many moves each side has), and, as the board fills, it reads the game to the end and counts the exact final discs. Hard uses iterative deepening within a time budget of about a second; the whole engine runs locally in your browser (in a background worker thread, so the page stays responsive), and nothing is sent to a server. It is extremely strong against human play, though we do not claim it is perfect.

How to play Othello — the rules

Tips to beat the AI

FAQ

Can I play Othello online against the computer?
Yes — that is exactly what this page is. Pick a difficulty, choose your colour, and play. Works on desktop and mobile, free, with no account.

Is Othello the same as Reversi?
Essentially yes. Reversi is the older game; Othello is the standard modern version with a fixed starting position and Black first. This page uses the standard Othello rules and the names are interchangeable.

How strong is the AI?
Beginner plays some random moves. Medium plays solid positional Othello. Hard runs a negamax search with alpha-beta pruning that values corners and mobility and solves the endgame exactly — extremely strong, though we don't claim perfection.

What if I can't move?
If you have no flipping move you pass automatically and the AI plays; if neither side can move the game ends and discs are counted.

Is it free? Does it work offline?
Completely free, no download, no sign-up. The engine runs client-side, so once loaded the game keeps working without a connection. More AI games: AI Chess, AI Checkers, AI Connect 4, AI Tic Tac Toe or AI Sudoku.

More AI games on LK Forge