What is the row number which has the least sum of numbers placed in that row?
Show solution
Correct answer: 4
Setting up the staircase grid
Let us label the ten slots by their row–column position:
| C1 | C2 | C3 | C4 | |
|---|---|---|---|---|
| Row 1 | a | b | c | d |
| Row 2 | – | e | f | g |
| Row 3 | – | – | h | i |
| Row 4 | – | – | – | j |
Rows increase left → right; columns decrease top → bottom.
Key deductions
-
Place 10. The cell d = (R1, C4) is simultaneously the rightmost cell of Row 1 and the topmost cell of Column 4 — so it is the largest in its row and its column. No other cell has this property. Hence d = 10.
-
Place 1 (partially). By the same logic, the smallest number must sit at a cell that is the leftmost of its row and the bottommost of its column. These "valley" cells are the main diagonal a, e, h, j. Clue 3 says 1 shares a row or column with 10 (at d), so 1 is in Row 1 or Column 4. On the diagonal, only a (Row 1) and j (Column 4) qualify — so 1 is at a or j.
-
Clue 4: 2 and 3 avoid both Row 1 and Column 4 (where 10 sits), so {2, 3} must occupy two of {e, f, h}.
-
Place 9. The only cells that can be as large as 9 are c (directly left of 10) and g (directly below 10), since every other cell has at least two cells forced to be larger than it. Testing 9 at g leads to a contradiction (7 and 8 would be squeezed into {a, b, c, h}, and no valid arrangement survives the row/column ordering plus the {2,3} requirement). Hence c = 9.
-
Place 7 and 8. Clue 5 says 7 and 8 avoid Row 1 and Column 3 (where 9 sits), so {7, 8} ⊆ {e, g, i, j}. The only cell among these that can hold 8 is g (since e is bounded above by b < 9, i is bounded above by g, and j is bounded above by i). So g = 8, and then i = 7 (the only remaining option for 7 in {e, i, j}).
-
Clue 6 (4 and 6 in the same row). With c = 9, g = 8, i = 7, d = 10 fixed, the numbers left for {a, b, e, f, h, j} are {1, 2, 3, 4, 5, 6}. The only row that can hold both 4 and 6 is Row 1 (Row 2's open slots e, f must include two of {2, 3, 5}, and Row 3 has only one open slot). So a = 4, b = 6. Since a = 4, the 1 cannot be at a, so j = 1.
-
Finish {e, f, h}. They receive {2, 3, 5}. Since e < f and h < f, the largest (5) must go to f = 5, leaving {e, h} = {2, 3} in either order.
Solved grid
| C1 | C2 | C3 | C4 | |
|---|---|---|---|---|
| Row 1 | 4 | 6 | 9 | 10 |
| Row 2 | – | 2 / 3 | 5 | 8 |
| Row 3 | – | – | 3 / 2 | 7 |
| Row 4 | – | – | – | 1 |
Answering this question — least row-sum
Compute each row's sum:
| Row | Entries | Sum |
|---|---|---|
| Row 1 | 4, 6, 9, 10 | 29 |
| Row 2 | (2 or 3), 5, 8 | 15 or 16 |
| Row 3 | (3 or 2), 7 | 9 or 10 |
| Row 4 | 1 | 1 |
Row 4, with its single entry of 1, has by far the smallest sum regardless of how 2 and 3 are placed.
Answer: 4
