Flipside

Reversi / Othello — ink-wash dojo edition

Difficulty

Play as

or

How to Play Flipside

Flipside is a faithful browser recreation of the classic board game Reversi, also sold under the brand name Othello. The game is played on an 8×8 grid. Two players take turns placing discs — one side plays Black, the other plays White. Black always moves first.

To place a disc, you must choose an empty cell that outflanks at least one of your opponent's discs. Outflanking means your new disc and one of your existing discs form a straight line — horizontally, vertically, or diagonally — with one or more opponent discs sandwiched between them. Every sandwiched opponent disc then flips to your color.

If no legal placement exists on your turn, your turn is automatically passed. If neither player can move, the game ends and the player with more discs on the board wins. A tie is possible if both sides finish with 32 discs each.

Controls: Click or tap any highlighted cell to place your disc. The hint overlay (toggled with the H key or the Hints button) draws a faint ring on every legal cell. On Easy and Medium difficulty, the Undo button reverses your last move and the AI's reply, giving you a chance to reconsider your strategy. Hard mode disables undo to match competitive play conditions.

About the AI Opponent

Flipside's AI uses the Minimax algorithm with alpha-beta pruning. On Easy, the AI looks four moves ahead; on Medium, six moves; on Hard, eight moves. In all cases the AI evaluates positions using a positional weight table that assigns high value to corners (100 points each), moderate value to edges (10 points), and large penalties to X-squares — the cells diagonally adjacent to corners — because occupying an X-square typically hands your opponent a corner on their next move. The center cells score 1–5 points each.

In practice this means the Easy AI plays correct moves but makes occasional positional errors, the Medium AI is a genuine challenge, and the Hard AI will consistently exploit poor corner play and punish early X-square occupancy.

Strategy Tips for Flipside

Reversi rewards long-term positional thinking over raw disc count. A common beginner mistake is to maximize disc flips early, which can leave you with a bloated disc count that gives the opponent many valid moves to flip large swaths of your board on a single turn. The best players often hold fewer discs than their opponent through most of the mid-game.

Frequently Asked Questions

How does flipping work in Flipside?

When you place a disc, every enemy disc sandwiched between your new disc and any other of your discs — horizontally, vertically, or diagonally — flips to your color instantly. All eight directions are checked simultaneously, so a single well-chosen placement can flip large numbers of discs across multiple lines at once. You must flip at least one disc; placements that would capture nothing are illegal and cannot be selected. The hint overlay shows you every cell where a legal placement is currently available.

What is the best opening move for Black in Flipside?

Black's strongest opening is c4 (column C, row 4), also called the "Perpendicular" or "Diagonal" opening depending on White's response. This move sets up central pressure without immediately exposing edges. Its mirror f5 is equivalent by symmetry. The weakest opening for Black is typically d3 or e6, which places a disc near an edge early and can give White immediate access to the c1 / f1 area. Because Flipside uses a fixed opening position (the standard four-disc cross in the center), c4 and f5 are universally recommended by competitive Reversi players as Black's first move.

How does the AI opponent work?

Flipside's AI uses the Minimax algorithm with alpha-beta pruning to search the game tree to a fixed depth. On Easy, it searches 4 plies (half-moves) ahead; Medium searches 6; Hard searches 8. Each leaf position is evaluated using a positional weight table: corners score +100, edge cells +10, X-squares (diagonal to corners) score −25, and interior cells score 1–5 depending on proximity to the center. Mobility — the difference in legal move counts between the two players — is also factored in, worth +5 per move advantage. Alpha-beta pruning cuts branches that cannot improve on the best result found so far, making Hard-mode depth-8 search feasible in the browser in under two seconds.

Can I undo a move in Flipside?

Yes, on Easy and Medium difficulty the Undo button (or Ctrl+Z) reverses your last placement and the AI's reply together, returning the board to the state before your previous move. This lets you experiment with alternate lines without restarting. Hard mode disables undo entirely — consistent with tournament play, where taking back moves is not permitted — and the Undo button is greyed out as soon as you select Hard. You can undo multiple times in a row to step back through your entire move history, right to the opening position if you like.

Why are corner positions worth so much in Reversi?

The four corner cells — a1, a8, h1, h8 in standard notation — are the only cells on the board that can never be flipped once captured. This is because a disc can only be outflanked if a straight line of opponent discs separates it from one of your discs, and board edges prevent any line from extending through a corner. Once you hold a corner, every disc in the adjacent row and column that you place afterward becomes progressively more stable. Competitive players assess board position largely in terms of stable disc count — discs that cannot change color for the rest of the game — and corners are the starting point of almost every stable configuration. This is why Flipside's AI weights corner cells at 100 and penalizes X-squares at −25: giving up an X-square almost always costs you a corner on the opponent's next turn.