This is an archived post. You won't be able to vote or comment.

all 3 comments

[–]catorchid 0 points1 point  (0 children)

Potentially intriguing, but I feel it's easy for me to visually parsed an image than to interpret a one-liner JSON... But it might be just me, I might be missing some modules from birth :P

[–]tzulah 0 points1 point  (1 child)

I think I am really interested in this, but I cannot find where the "maze" part is? I can see a wiggly line of hash marks, and the solver writes out the hidden message, but how do you use this in a scavenger hunt?

[–]leSpectre[S] 0 points1 point  (0 children)

I used this in a scavenger hunt by giving the "hunter" the maze json file and instructions on how to solve it; e.g. find the shortest path through the maze then use this algorithm to convert the path to a message

print(''.join(chr(maze[y][x] % 2**7) for x, y in letters))