Indiana - Level 2 - incorrect input format

Something seems wrong with the input.

input for the first puzzle:

5 3
WALL:UP:unlocked WALL:LEFT:unlocked STRAIGHT:LEFT:locked WALL:UP:unlocked WALL:UP:unlocked
WALL:UP:unlocked WALL:UP:unlocked STRAIGHT:UP:unlocked WALL:UP:unlocked WALL:UP:unlocked
WALL:UP:unlocked WALL:RIGHT:unlocked STRAIGHT:RIGHT:locked WALL:UP:unlocked WALL:UP:unlocked
2 0 DOWN 0
0
2

the rooms should be integers not a tuple of 3. (WALL:UP:unlocked tuples should be a integer 0)

You read it wrong (or you just log it wrong). The input for the first puzzle is the following one :

5 3
0 0 -3 0 0
0 0 2 0 0
0 0 -3 0 0
2

It seems to that you have some … BadCode

ow i see now, the custom test case has a different format. I was in the presumption that the new custom test case feature represented the actual application input.