easyctf-2017/match-me/grader.py
2017-02-11 23:35:04 -06:00

5 lines
121 B
Python

def grade(autogen, key):
if key.find("Paris,Blair") != -1:
return True, "Correct!"
return False, "Nope!"