Solution to The Lobster Network

Back to Puzzle

Answer: PIRATE SONG

by Justine Jang

Each node represents a different word transformation that we apply in sequence. The transformations are as follows:

  1. Reverse string (decal → laced)
  2. Add “re” to the start of the word (fuse → refuse)
  3. Replace last letter with the previous letter in the alphabet (i.e. mast → mass)
  4. Convert the word to its pig latin form (trash → ashtray)
  5. Take a homophone of the word (allowed → aloud)
  6. Take an antonym of the word (big → small)
  7. Add the substring “tor” to the word in any location (real → realtor)
  8. Remove the suffix of the word (policing → police)

We get a word as input and then apply some number of transformations on it until we get an output word. Notably, all the intermediate strings are also words. After you know the transformations, you can use the four answers you got from the events as input words and get four output words. In order, we have:

  1. Sailing: FOOLISH
  2. Archery: PAID
  3. Pistol: DUO
  4. Fencing: FACIAL
The corresponding transformations are:
  1. FOOLISH → FOOL → SAGE → STORAGE
  2. PAID → REPAID → DIAPER
  3. DUO → DUN → DONE → ONEDAY
  4. FACIAL → FACTORIAL → FACTOR → REFACTOR
And if we take the relevant letters, we spell out the answer, PIRATE SONG.