9
$\begingroup$

Say hello to a not-so-simple, 4x4 word square:

Screenshot of the word square.

This little monstrosity has two rules; to define the first rule, have you ever heard of a heteropalindrome?

Strings of letters that form words when read both forward and backward (e.g., "deliver" and "reviled") are termed heteropalindromes.

Now you have, and with that out of the way; the first rule is that the result for each row and column, must be classified as a heteropalindrome, as described above. For example:

[s, a, g, a]
[p,  ,  ,  ]
[a,  ,  ,  ]
[s,  ,  ,  ]

The second rule is simply that words must be contained in YAWL.

Your task is simple, complete the word square, while meeting the aforementioned constraints. The first answer meeting the aforementioned requirements will get the checkmark.

$\endgroup$
4
  • $\begingroup$ Are repeated words okay? $\endgroup$
    – Deusovi
    Commented Sep 16, 2021 at 20:49
  • $\begingroup$ @Deusovi yes, they are. $\endgroup$
    – Taco
    Commented Sep 16, 2021 at 20:50
  • 1
    $\begingroup$ are true palindromes allowed? $\endgroup$
    – SteveV
    Commented Sep 16, 2021 at 20:54
  • $\begingroup$ @SteveV of course :) since repeated words are okay. $\endgroup$
    – Taco
    Commented Sep 16, 2021 at 21:22

3 Answers 3

13
$\begingroup$

One solution meeting your requirements:

[W, A, R, D]
[A, J, A, R]
[R, A, J, A]
[D, R, A, W]

$\endgroup$
11
$\begingroup$

Yet another one, with all 16 words different: (I admit that this is a computer-assisted answer, in the sense that I wrote a program to extract the list of 4-letter heteropalindromes from YAWL. I constructed the square manually from that list.)

alan
rima
even
sena

For side information: there are only 16 unique such squares containing 16 unique words (not counting rotations and reflections of same grids), which can be verified via this script.

There are 2720 unique squares in total if duplicate words and palindromes are allowed. Notably, under this rule, there are a few very trivial answers due to the property of certain words like

anan
nana
anan
nana

abba
boob
boob
abba

anna
naan
naan
anna

Finally, there is exactly one grid that manages to have one diagonal also being a heteropalindrome and the other diagonal containing vowels and being a palindrome (but unfortunately not a word in YAWL):

eses
slee
eels
sese

$\endgroup$
7
$\begingroup$

Deuosvi had already posted an answer, but I couldn't stop myself when I found another one:

[P, E, T, S]
[E, D, I, T]
[T, I, D, E]
[S, T, E, P]

$\endgroup$

Not the answer you're looking for? Browse other questions tagged or ask your own question.