easyctf-2017/match-me/grader.py

5 lines
121 B
Python
Raw Normal View History

2017-02-12 05:35:04 +00:00
def grade(autogen, key):
if key.find("Paris,Blair") != -1:
return True, "Correct!"
return False, "Nope!"