This commit is contained in:
Varsos 2017-03-14 12:44:26 -07:00
parent 64626f8c3d
commit 43d438df20
3 changed files with 12 additions and 0 deletions

View file

@ -0,0 +1 @@
Solve a maze! 'j' is left, 'k' is down, 'l' is right, and 'i' is up. You input directions in a string. An example: "jkliilillikjk". Submit your input string as the flag. (Whoops! You don't have a maze, do you? Sucks to be you.)

4
a-maze-ing/grader.py Normal file
View file

@ -0,0 +1,4 @@
def grade(autogen, answer):
if len(answer)>= 25:
return True, "You guessed right!"
return False, "Nope. The maze is a bit longer than that."

7
a-maze-ing/problem.yml Normal file
View file

@ -0,0 +1,7 @@
title: A-maze-ing
author: nicebowlofsoup
hint: It may take you a while to get to the end. Just keep going!
category: Miscellaneous
autogen: false
programming: false
value: 30