Writings

From A to I: Solving Regional Artwork

Kyle LukaszekJuly 2, 2026

Jane Street’s June 2026 puzzle gives fourteen clues whose answers need to be sorted. I initially treated them as independent crossword-style clues. The title was not much help either. Regional Artwork could point to almost anything. The useful pattern only appeared after I had a few answers in hand.

Regional Artwork puzzle clues and sorting instructions

The solving process

I started with the clue about “our nearest neighbors.” The note that we have not visited them yet points to Alpha Centauri, the nearest stellar system to our own. After that, I worked through a few of the more distinctive clues:

  • The famous skeptic is James Randi, whose stage name is The Amazing Randi. The answer needed to be Amazing Randi, without the leading “The.”
  • The notable 2026 launch is Artemis II. I first wrote “Artemis 2,” but the Roman-numeral spelling turned out to be important for the answer’s exact length.
  • The Shakespeare quotation points to Act IV, Scene I of Macbeth. Again, the Roman numerals matter.
  • The eponym of multiple continents is Amerigo Vespucci. This was the one I had to look up; I recognized the name once I had the clue’s wording in front of me.

At that point I noticed that all four answers start with A and end with I. That turned out to be the central hint. The third clue, “arguably, the story of our time,” then becomes the almost comically direct answer AI.

Once I had that pattern, the remaining clues became much easier to search. The one-time Outkast output is Aquemini, which is Outkast’s only album beginning with A and ending with I. A microwaveable popcorn brand that replaced a refrigerated product is ACT II. The frequent Frazier foe is Ali, referring to Muhammad Ali.

The “often-inset pair” took a little more lateral thinking. Maps commonly show Alaska and Hawaii in inset boxes, so “for short” gives AK & HI. For the Oscar-winning role from the 1980s, I found “Salieri” first in a crossword answer bank. The full answer that fits the pattern is Antonio Salieri, the character played by F. Murray Abraham in Amadeus.

The clue about Kabul refers to a currency. An afghani is Afghanistan’s currency, so in Kabul you might break one in the ordinary sense of breaking a bill. That left the two clues I found least familiar. By then I had run out of useful search terms, so I asked Claude for ideas. It suggested Alumni for the magazine clue, which made complete sense, but my university has never sent me an alumni magazine so the idea never crossed my mind.

It also suggested Anno Domini for “the present, in the past.” That one made me feel a little stupid. The present year is still labeled AD, but AD also describes all the years stretching back into the past. Once I saw it written down, the clue seemed obvious. I just had not made the connection myself.

I did not solve these in clue order. A few recognizable answers suggested the spelling constraint, and that constraint gave me a way to search for the stranger ones. Here are all of the answers in the intended order:

#ClueAnswer
1Frequent Frazier foeAli
2Type of magazine you might start getting in your 20sAlumni
3Arguably, the story of our time (and a hint to answering the other clues)AI
4Stage name of a famous skeptic (with “The”)Amazing Randi
5Oscar-winning role from the 80sAntonio Salieri
6Often-inset pair, for shortAK & HI
7Microwaveable snack brand that replaced a refrigerated productACT II
8Where to find “take thou this vial” and “double, double toil and trouble”Act IV, Scene I
9You might break it in KabulAfghani
10Eponym of multiple continents (and the answer that should come last after sorting)Amerigo Vespucci
11One-time Outkast outputAquemini
12Notable 2026 launchArtemis II
13The present, in the pastAnno Domini
14Our nearest neighbors, in some sense (though we haven’t visited them yet)Alpha Centauri

The punctuation and typography in the answers are part of the sorting mechanism, so I kept the intended forms above even though they will be normalized shortly. In particular, AK & HI, ACT II, and Act IV, Scene I should not be treated as ordinary words with arbitrary punctuation removed by eye.

Sorting the answers

The puzzle says to move the answers into their proper locations. I interpreted that as sorting them by length after removing spaces and punctuation. The result confirms the idea: the normalized lengths are all different, and they cover every value from 2 through 15.

I used a short Python script to make the normalization explicit rather than counting characters manually:

import re

answers = [
    "Ali",
    "Alumni",
    "AI",
    "Amazing Randi",
    "Antonio Salieri",
    "AK & HI",
    "ACT II",
    "Act IV, Scene I",
    "Afghani",
    "Amerigo Vespucci",
    "Aquemini",
    "Artemis II",
    "Anno Domini",
    "Alpha Centauri",
]

def normalize(answer):
    """Keep letters only, preserving Roman numerals such as II."""
    return re.sub(r"[^A-Z]", "", answer.upper())

normalized = [normalize(answer) for answer in answers]
sorted_answers = sorted(
    enumerate(normalized, start=1),
    key=lambda clue_and_answer: len(clue_and_answer[1]),
)

for sorted_position, (clue_number, answer) in enumerate(sorted_answers, start=1):
    print(sorted_position, clue_number, answer, len(answer))

The sorted output starts with AI, then ALI, AKHI, and ACTII, and ends with AMERIGOVESPUCCI. The complete ordering is:

AnswerNormalized formLength
AIAI2
AliALI3
AK & HIAKHI4
ACT IIACTII5
AlumniALUMNI6
AfghaniAFGHANI7
AqueminiAQUEMINI8
Artemis IIARTEMISII9
Anno DominiANNODOMINI10
Act IV, Scene IACTIVSCENEI11
Amazing RandiAMAZINGRANDI12
Alpha CentauriALPHACENTAURI13
Antonio SalieriANTONIOSALIERI14
Amerigo VespucciAMERIGOVESPUCCI15

With the sorted list in hand, I compared each answer’s original clue position with its new position. The absolute difference is the number of places that answer moved. That number is also a character index into the answer. Since Python uses zero-based string indices, the character at move count n is answer[n - 1].

sorted_position_by_clue = {
    clue_number: sorted_position
    for sorted_position, (clue_number, answer) in enumerate(sorted_answers, start=1)
}

rows = []
for original_position, answer in enumerate(normalized, start=1):
    sorted_position = sorted_position_by_clue[original_position]
    places_moved = abs(sorted_position - original_position)
    extracted_letter = answer[places_moved - 1]

    rows.append({
        "clue": original_position,
        "answer": answer,
        "length": len(answer),
        "sorted_position": sorted_position,
        "places_moved": places_moved,
        "letter": extracted_letter,
    })

for row in rows:
    print(
        row["clue"], row["answer"], row["length"],
        row["sorted_position"], row["places_moved"], row["letter"],
    )

Here is the same calculation as a table, kept in the original clue order:

ClueAnswerSorted positionPositions movedExtracted character
1ALI21A
2ALUMNI53U
3AI12I
4AMAZINGRANDI117G
5ANTONIOSALIERI138S
6AKHI33H
7ACTII43T
8ACTIVSCENEI102C
9AFGHANI63G
10AMERIGOVESPUCCI144R
11AQUEMINI74E
12ARTEMISII84E
13ANNODOMINI94O
14ALPHACENTAURI122L

For example, ALI moves from position 1 to position 2, so we take its first character: A. AMAZINGRANDI moves from position 4 to position 11, so we take its seventh character: G.

The answer lengths label the blanks in the final clue. The numbers printed under the blanks are therefore lengths, not clue numbers. A final few lines of Python reproduce the extraction in that displayed order:

final_clue_labels = [7, 8, 10, 15, 12, 9, 13, 6, 11, 3, 14, 4, 2, 5]
letter_by_length = {row["length"]: row["letter"] for row in rows}

message = "".join(letter_by_length[length] for length in final_clue_labels)
print(message)
# GEORGELUCASHIT

Reading the result with the spaces shown by the puzzle,

7  8  10  15  12  9    13  6  11  3  14    4  2  5
G  E  O   R   G   E    L   U  C   A  S     H  I  T

we get:

GEORGE LUCAS HIT

The final clue asks for a George Lucas hit. The only George Lucas film that starts with A and ends with I is American Graffiti.

That also explains the title: American Graffiti is the regional artwork.

What made this one fun for me was the way the clues kept changing character. At first, Alpha Centauri and Amazing Randi felt like isolated bits of trivia. Once I noticed the A-to-I pattern, even oddities like ACT II and afghani became plausible answers. The final sort was the payoff: it turned that arbitrary-looking list into “George Lucas hit,” with American Graffiti as the answer. That felt a little different from the usual Jane Street puzzle, and I liked it.

Final answer: American Graffiti