Yes — you can play Water Sort Puzzle in any modern browser with no download, no installer, no sign-up, and no plugin. The browser-based Water Sort Puzzle loads a single page that contains the whole game: a fixed five-tube board, an exact 1,000-point completion reward, and a deterministic state space small enough that every legal arrangement can be enumerated by a production breadth-first search (BFS). Because everything runs locally, no puzzle state, move history, score, or input is uploaded, and no account or paid API is required. Reloading the page does not silently regenerate an easier board, and no random seed or remote level service changes the published starting tubes. The two empty tubes, three starting colors, four-unit capacity, monochrome completion rule, and 10-pour verified minimum are all part of the published product contract rather than features borrowed from a typical mobile app store listing, and a single independent breadth-first search oracle confirms that same minimum depth from a separate implementation.

What Makes the Browser Version Different From a Downloaded App
Mobile app stores are crowded with Water Sort variants that add coin systems, ads, timers, and procedurally generated levels. The browser version removes those layers so the puzzle becomes a single, fixed, deterministic challenge. The board is published once, the score is fixed, and the shortest route has been independently verified by a second solver. Anyone curious about the actual mechanics — capacity, pour rules, monochrome completion — can read the rules, open the page, and check every claim against what is on screen in a few minutes. There is no onboarding flow, no permission prompt, no in-app purchase screen, and no level selector to scroll through.
Because no state is uploaded, the same ten-pour solution works for every player on every device. A 390-pixel mobile viewport, a desktop window, and a keyboard-only session all reach the same finished board with the same 1,000-point reward. The small bounded state space also keeps every move immediate, even on modest mobile hardware, so the experience does not depend on a high-end phone or a fast network. Responsive five-column controls use shrink-safe labels and compact spacing so the layout stays inside the viewport without horizontal overflow.
Inside the Five-Tube Board: Colors, Capacity, and Empty Workspace
The fixed board consists of five labeled tubes, each with capacity for four liquid units. Amber, blue, and teal each appear exactly four times across the puzzle, giving the conserved total of twelve units. Three tubes begin full and two begin empty, leaving room to maneuver without violating conservation. The encoded bottom-to-top starting state for every tube is published in the product contract, which makes every claimed solution and every test reproducible.
| Tube | Bottom to Top (Initial State) | Starts |
|---|---|---|
| Tube 1 | Amber, Blue, Teal, Amber | Full (4 units) |
| Tube 2 | Teal, Amber, Blue, Teal | Full (4 units) |
| Tube 3 | Blue, Teal, Amber, Blue | Full (4 units) |
| Tube 4 | — | Empty |
| Tube 5 | — | Empty |
The letters A, B, and T remain visible inside the liquid layers, which means the board never depends on color perception alone. Only the top color of a tube is accessible because a tube behaves like a stack. The destination of any pour must be a different tube that is either empty or has the same color on top, and it must still have free capacity. When the destination cannot hold the full connected run of identical color at the source top, only the amount that fits moves.
Playing Water Sort Puzzle in Your Browser
- Open the Water Sort Puzzle page in any modern browser — no download, install, or sign-up is required.
- Study the five labeled tubes. Notice that Tubes 1, 2, and 3 each contain a four-layer mix of amber, blue, and teal, while Tubes 4 and 5 begin empty as your workspace.
- Select a non-empty source tube. Its accessible label lists every color from bottom to top, and the selection is visibly marked on screen.
- Choose a destination tube. The destination must be empty, or it must already have the same color on top and have free capacity.
- Watch the connected run of identical color at the source top pour into the destination. The move counter increases once per legal pour.
- If the destination cannot hold the entire run, only the fitting amount moves and the remainder stays on top of the source.
- Keep four units of amber, blue, and teal conserved at all times. Plan moves so that one empty tube remains available as workspace.
- Press U to undo the last legal pour if a move hides the only useful match, or press R to restart the fixed board from the published start.
- Finish with three full monochrome tubes — one amber, one blue, one teal — and two empty tubes to reach the solved state.
- Any legal route that reaches the solved state earns exactly 1,000 points. The shortest verified route is ten pours, but a longer legal completion receives the same reward.
Touch, Mouse, and Keyboard Controls for the Browser Version
Touch and mouse play use the same direct two-step interaction: select a tube that contains liquid, then select a destination. Selecting the source again cancels the choice without performing a pour, and a legal destination receives the full movable top run instantly. Every tube is a native button with a touch-friendly target and a full accessible label, so the interaction does not depend on color vision. The transparent pour feedback shows the run moving in one step and updates the move counter once, so you can immediately see what changed.
Keyboard play covers the complete game. Left or Up Arrow moves the logical cursor to the previous tube; Right or Down Arrow moves it to the next tube, and the cursor wraps at both ends. Enter or Space activates the tube under the cursor. Number keys 1 through 5 activate a tube directly, which lets an entire solution be entered without using the pointer. U undoes the most recent legal pour, and R restarts the board. A shared double-Escape boss key swaps the puzzle for a neutral spreadsheet view; using the gesture again restores the same puzzle state.
| Key | Action |
|---|---|
| Left Arrow / Up Arrow | Move cursor to previous tube (wraps) |
| Right Arrow / Down Arrow | Move cursor to next tube (wraps) |
| Enter / Space | Activate the tube under the cursor |
| Number keys 1–5 | Activate a tube directly by number |
| U | Undo the most recent legal pour |
| R | Restart the fixed board |
| Double Escape | Toggle the Boss Key spreadsheet view |
The Verified 10-Pour Shortest Route and How BFS Confirms It
The fixed board has a tiny bounded state space, so a production BFS solver can enumerate every legal arrangement exactly once. The solver serializes the five labeled tubes, explores source-destination pairs in numeric order, and treats each pour as one graph edge. Because every edge represents a single pour, the first solved arrangement reached by the BFS queue is the minimum-depth route. The deterministic first route is Tube 1 to 4, 2 to 1, 3 to 2, 3 to 4, 1 to 3, 2 to 1, 2 to 4, 3 to 2, 1 to 3, and 1 to 4 — exactly ten pours.
Release testing does not trust that single solver. An independent oracle represents colors as single letters, implements its own top-run and capacity operations, and runs a separate queue. It independently finds the same 10-pour route. A second exhaustive traversal reaches 2,721 labeled states, counts 12,792 directed legal transitions, and finds 60 solved labelings. Sixty is the expected count because the three named color tubes and the two empty tube positions may be permuted across the five labeled positions. State invariants are checked after every move along the shortest route: the board always has five tubes, no tube exceeds four units, and amber, blue, and teal remain at exactly four units each.
Score, Errors, Undo, and Boss Key: How the Browser Version Behaves
Any legal route that reaches the solved condition earns exactly 1,000 points. The reward does not depend on speed, and no hidden move penalty exists for finishing in more than ten pours. This keeps the win condition understandable and avoids presenting the product score as a standardized measure of reasoning ability. Undo reverses the most recent legal pour, restoring the exact earlier tube arrangement, move count, and mistake count recorded before that move; it cannot invent or remove liquid. Restart is broader and restores all twelve units to the published starting tubes, clears selection and history, returns the cursor to Tube 1, and resets score, moves, mistakes, completion, and feedback.
Illegal attempts never mutate the liquid arrangement. Choosing an empty source, targeting a full tube, or targeting a different top color leaves every tube and the legal move count unchanged, and the live feedback names the exact problem. The first illegal attempt is repairable: choose a legal source and destination and continue from the identical board. A second illegal attempt deadlocks that run until Restart. Once the puzzle is complete or deadlocked, the terminal state freezes so tube activation, arrow selection, number shortcuts, and Undo cannot alter the result; Restart begins a fresh run. Everything runs locally in the browser — no puzzle state, move history, score, or input is uploaded, and no account or paid API is required.