easyctf-2017/a-maze-ing/grader.py

5 lines
147 B
Python
Raw Normal View History

2017-03-14 19:44:26 +00:00
def grade(autogen, answer):
if len(answer)>= 25:
return True, "You guessed right!"
return False, "Nope. The maze is a bit longer than that."