amazing
This commit is contained in:
parent
64626f8c3d
commit
43d438df20
3 changed files with 12 additions and 0 deletions
1
a-maze-ing/description.md
Normal file
1
a-maze-ing/description.md
Normal 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
4
a-maze-ing/grader.py
Normal 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
7
a-maze-ing/problem.yml
Normal 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
|
Loading…
Reference in a new issue