Skip to main content
MITMH2022
Public Access

Solution to Nowhere To Hide

Reference Point

Answer: MIDBRAIN
by Michael Korn
Tech by James Sugrono and Shai Nir Hana

The game plays like Tetris, except solvers must arrange the pieces so that valid words (according to the linked wordlist) are spelled across and down, and so that all the pieces are connected (similar to the rules of Scrabble). If a piece violates these rules, the game ends with a message of "Illegal placement".

Each of the six levels always consists of the same sequence of pieces. After about six or seven pieces, a final piece appears which has symbols on it instead of letters. Upon placing this piece, the game will either say "Illegal placement", or possibly "Level completed".

Each symbol represents a letter, and the game interprets each symbol as though it was the associated letter in determining whether the placement of the piece is legal. Solvers will need to determine the mapping from symbols to letters by analyzing the configurations which successfully complete the level, as well as those which don't.

For example, the following is a valid configuration for level 1:

      : * & #
            O
            N U T S
                R
          R     O
          A     P
  E V E   T     E
      T H E S I S

From this, solvers can conclude that #ON is a valid word, and thus # must represent one of C, D, E, F, H, I, M, S, T, W, or Y. Solvers can also conclude that :*&# is a valid word. The same configuration with the top word slid one position to the right is not legal, so then solvers can conclude that &ON is not a valid word, and so & must represent A, B, G, J, K, L, N, O, P, Q, R, U, V, X, or Z.

There are hundreds of ways to complete each level, but solvers don't need to examine them all; they just need to try as many as necessary to determine the hidden words. As an additional aid, the mapping from symbols to letters is consistent across all six levels, so the & in level 1 represents the same letter as the & in level 2, for instance. Also, no two symbols represent the same letter.

The mapping is as follows:

A;
B?
D%
F!
I*
K-
L/
M$
N&
O@
R+
S~
T:
U=
Y#

The final pieces in each of the levels are TINY, ION, MASON, FLOUR, KNOB, and DIM, respectively.

For the final step, solvers must simulate playing a “meta level” using the final words from levels 1-6. Unlike the earlier levels which could be completed in many ways, there is only one way to legally place the pieces for the meta level. (In fact, after placing the first piece, there is only one valid placement for each of the remaining pieces.) The final configuration is as follows (note that KNOB and DIM need to be rotated):

        M
        I
        D
        B O N K
F L O U R
      M A S O N
        I O N
    T I N Y

The word reading vertically through all six pieces is the answer to the puzzle: MIDBRAIN.

Here are some examples that show how each letter can be deduced.

Let's start with level 3. One can make the following configurations:

$ ; ~ @ &
        A         E
    P I N         L
    R             A
    A             T
    T         A T E
    S W O R D S

    $ ; ~ @ &
        A
    T A L E
S T A R
W
O
R
D     N I P
S A T E

        $ ; ~ @ &
        A
      A T E
S T A R
W
O
R
D       N I P
S T A L E

      $ ; ~ @ &
          P
          I
          N
  A   A T E
S T A R
W
O
R
D
S T A L E

For each of these, there are five different alignments at which one can try to place the unknown word. So for each of the five symbols, we can determine whether they form valid words when placed in the blanks in the templates _AN, _AL, _AT, and _PINE.

Here are the sets of letters which form valid words for each of the templates:

_AN         BC  FG     MN P R T VW
_AL        AB D  G        P  S
_AT         BC EFGH  KLM OPQRST VW
_PINE                    O   S

Thus $;~@& must fit the pattern [CFMRTVW][AD]SON, and the only word fitting this pattern is MASON.

Moving to level 1, here are some configurations one could make:

  : * & #
  O
  E V E
      N U T S
          R
          O
          P
    R A T E
T H E S I S

    : * & #
        O
        S T U N
          R
          O
E V E     P
    R A T E
T H E S I S

          : * & #
          O
      R O P E S
        R     T
        A     U
E V E   T     N
    T H E S I S

: * & #
      O
      N U T S
          R
          O
E V E     P
    R A T E
T H E S I S

    : * & #
        O
        N U T S
  R O P E
    R
    A
    T     E V E
T H E S I S

          : * & #
N           R
U     O     A
T R O P E   T     E V E
S       T H E S I S

Again, the unknown word can be shifted around to test each different symbol in each template. Here are the templates and the letters which satisfy them:

_OE           D F H J       R T VW
_OS         BCD      K MN    S   W
_OP         BC  F H  KLM  P  ST  W
_ON          CDEF HI   M     ST  W Y
_ONE        BCD  GH   L N P  ST     Z
_RATE        C   G I     OP    U

At this point, there are still two possible words, TINE and TINY. These can be distinguished by the configuration below (or many others). This configuration fails to be valid, so the word must be TINY.

              :
              *
              &
              #
  O     N U T S
  R O P E
    R
    A
    T     E V E
T H E S I S

(not a winning configuration)

For level 2, all the symbols are ones we've already deduced. The hidden word is ION.

For level 6, we've already determined that * is I and $ is M. The following configurations are both valid:

    % * $
    O
    N
A C E
  L
  O   P A R T
  S         E A R
R E L E V A N T

$ * %
    O
    N
A C E
  L
  O   P A R T
  S         E A R
R E L E V A N T

This shows that both %*$ and $*% are valid words. So % can fill in the blanks in _ONE, _IM, and MI_.

_ONE        BCD  GH   L N P  ST     Z
_IM        A  D   H    MN   RS  V
MI_         B D  G    LM    RS    X

So % is either D or S. We might rule out S on the grounds that ~ is already S, but another trial configuration such as the one below will confirm that D is the correct letter.

    %
    *
    $
A C E
  L             N
  O   P A R T   O
  S         E A R
R E L E V A N T

On to level 5. Here are some configurations:

- & @ ?             C
      A             A
      I     M E N   R
      L A T E   U S E
            N O T

- & @ ?         C
      A         A
M     I         R
E L A T E   U S E
N       N O T

              - & @ ?
              A
    C A R     I
U S E     M E N
    L A T E
          N O T

                - & @ ?
                C
      A         A
M     I         R
E L A T E   U S E
N       N O T

(not a winning configuration)

This leads to the following templates:

_AIL        B   F H JK MN P RST VW
_AIT        B    G               W
_AIN         C  FG   KLM  P RST VW
_CARE                        S

The word must fit the pattern [FKMPRTV]NOB, and the only option is KNOB.

Finally we go to level 4. Here are some configurations:

          ! / @ = +
          I
          N
      E A S T
            R
E N       S I
L A P     P A
    A R E A L

        ! / @ = +
          E
          N
      E A S T
N           R
I         S I
L A P     P A
    A R E A L

        ! / @ = +
        E
        A
        S         E N
        T   L A I R
        S P A
    N     A
    I     R
    P A L E

          ! / @ = +
          L
          A   E N
          P I N
      E A S T
L A I R
A
P
S
E R A

      ! / @ = +
N E         N
  L A P     I
      E A S T
L A I R
A
P
S
E R A

This leads to the following templates:

_INS       AB D FGH JKL   P RST  W YZ
_ENS        B D FGH  KL   P   T  W Y
_EASTS      B   F     L            Y
_LAPS        C  F            S
_NIT                 K       S U

The word must fit the pattern F[BLY]OU[AJRZ], and the only possibility is FLOUR.