Rules:
Fire Mechanics (Green Squares):
Cells marked with a green square are shooters. A shooter always fires at a target — a cell marked with a circle.
The direction and distance of the shot are determined by the four orthogonally adjacent cells to the shooter (up, down, left, right):
The direction is defined by the digits — the bigger digit in each pair (top/bottom or left/right) determines the direction.
Result of the Shot:
The shooter places its digit in the target cell — that is, the target receives the value from the shooter.
Target Matching:
Each shooter always hits its unique target based on the calculated offset.
Example:
Let’s say the shooter is at R2C2 and the target is at R6C3.
Digits around the shooter are:
Top (R1C2) = 4
Left (R2C1) = 6
Shooter (R2C2) = 2
Right (R2C3) = 7
Bottom (R3C2) = 8
Then:
Horizontal shift = 7 – 6 = 1 (right)
Vertical shift = 8 – 4 = 4 (down)
So, the shot lands at R6C3, and that cell is filled with the shooter’s value: 2.
Solution code: Row 9 read left to right without spaces
on 28. May 2025, 05:30 by dkfan9
Cool concept, and it created a nice sequential flow. Thanks for the puzzle!
Please note: The German version of this page has changed. It is possible that this page does not contain the latest information.