Game Is Hard Level 91 Breakdown
What You See
A 3x3 grid shows a '1' in the top-left corner and a '14' in the bottom-right, with seven blank brown squares between them. The instruction "fill them all" sets the task.
The blanks follow layered rules. The top row and left column are a Fibonacci-like 1, 1, 2; the center cell is the sum of its top and left neighbors; and the two off-diagonal cells sum three neighbors. The '14' is a fixed anchor, not a derived value.
Why You're Stuck
I assumed one rule — like Pascal's triangle or 'sum of top and left' — would apply to every cell. It worked for the center but broke on the off-diagonal cells, and I couldn't figure out why.
The grid needs three different rules. The border runs Fibonacci (1, 1, 2), the center is top+left (1+1=2), and the off-diagonal cells add three neighbors (top + left + diagonal). Once I applied each rule where it belonged, the grid filled to 1 1 2 / 1 2 5 / 2 5 14.
The Answer
Fill the 3x3 grid to match 1 1 2 on top, 1 2 5 in the middle, and 2 5 14 on the bottom. The border runs 1,1,2; the center is 2; and the two off-diagonal cells are 5, with the bottom-right '14' already fixed.
How to Beat It
Work through it one move at a time.
- Step 1: Fill the top row and left column. Set the cells next to the '1' to 1, then the top-right and bottom-left to 2 — a Fibonacci-like 1, 1, 2 for both border.
- Step 2: Fill the center. Set the middle cell to 2, the sum of its top (1) and left (1) neighbors.
- Step 3: Fill the off-diagonal cells. Set the remaining two cells to 5 each — the sum of top, left, and diagonal neighbors. The fixed '14' then validates the whole grid.
Troubleshooting
- The center cell breaks my rule: the center uses top+left (1+1=2), but the off-diagonal cells use a three-neighbor sum (2+2+1=5). Don't force one rule on every cell.
- I get 4 instead of 5: the off-diagonal cells add three neighbors — top, left, and top-left diagonal. 2 + 2 + 1 = 5, not 2 + 2 = 4.
- The '14' seems wrong: it's a fixed anchor, not a derived value. It validates that your border and neighbor rules are correct, not a number you calculate.
Why It Works
The level's difficulty is its inconsistent rules. Players instinctively look for one universal pattern, but the grid mixes three: a Fibonacci border, a simple center sum, and a three-neighbor sum for the off-diagonal cells. The fixed '14' in the corner acts as a validator rather than a target to compute. The grid's symmetry — the off-diagonal cells both equal 5 — is a subtle hint that the same rule applies to both, once you find it.
The Rule to Carry Forward
In number grids, don't assume one rule fits every cell. Fill the constrained border first, then handle interior cells individually — center may use a simple sum while off-diagonal cells add a diagonal neighbor. Use any fixed value as a validator, not a target.
- Border cells often follow a sequence (like Fibonacci) before interior logic.
- Different cells can use different rules — check each one's neighbors.
- A fixed corner value validates your work; don't try to derive it.
The answer is 1 1 2 / 1 2 5 / 2 5 14. Border is Fibonacci, center is 1+1, and the off-diagonal 5s come from 2+2+1.
Applying one rule to every cell. The border runs Fibonacci (1,1,2), the center is 2, and the off-diagonal cells need a three-neighbor sum (5).
Get the Official Game
Game Is Hard Level 91 FAQ
What's the answer to Game Is Hard Level 91?
Fill the grid to 1 1 2 / 1 2 5 / 2 5 14. The border is Fibonacci-like, the center is 2, and the off-diagonal cells are 5 in Game Is Hard Level 91.
Why doesn't one rule work for Game Is Hard Level 91?
Because different cells use different rules. The border runs 1,1,2, the center is top+left, and the off-diagonal cells add three neighbors in Game Is Hard Level 91.
How do I get the 5s in Game Is Hard Level 91?
Each 5 is top + left + diagonal neighbor: 2 + 2 + 1 = 5. That three-neighbor sum fills the off-diagonal cells in Game Is Hard Level 91.
More Game Is Hard Help
This is one guide in a complete Game Is Hard index — every stage we've solved is listed on the home page.