Teaser 2441: [Letter grid]
From The Sunday Times, 5th July 2009 [link]
Your task today is to place nine different letters of the alphabet in a 3-by-3 grid.
The letters must include S, A, M, E. You must do this in such a way that, when the letters are given their numerical value (A = 1, B = 2, C = 3, etc.) then each row, column and diagonal of the grid has the same total.
You will find that the other five letters used can swiftly be rearranged into a common word.
What is that word?
This puzzle was originally published with no title.
[teaser2441]
Jim Randell 8:36 am on 8 May 2026 Permalink |
Here is a solution using the [[
SubstitutedExpression]] solver from the enigma.py library.The following run file executes in 92ms. (Internal runtime of the generated code is 10.2ms).
#! python3 -m enigma -rr SubstitutedExpression # assign values from 1 - 26 to the grid: # # A B C # D E F # G H I # # to make a magic square with sum 3E --distinct="ABCDEFGHI" --base="27" --digits="1-26" # rows sum to 3E "A + B + C == 3 * E" "D + F == 2 * E" "G + H + I == 3 * E" # cols sum to 3E "A + D + G == 3 * E" "B + H == 2 * E" "C + F + I == 3 * E" # diags sum to 3E "A + I == 2 * E" "C + G == 2 * E" # required values (S, A, M, E) "{1, 5, 13, 19}.issubset({A, B, C, D, E, F, G, H, I})" # remove symmetric arrangements "A < C" "C < G" "A < I" --template="" --answer="ordered(A, B, C, D, E, F, G, H, I)"The completed grid is:
Each row, column and diagonal has a sum of 33.
And the corresponding letters are: SAME (= 19, 1, 13, 5) + KQIUC (= 11, 17, 9, 21, 3).
Solution: The word is: QUICK.
LikeLike