5 lines
124 B
Python
5 lines
124 B
Python
|
def grade(random, key):
|
||
|
if key.find("w3_ev3n_u53_git") != -1:
|
||
|
return True, "Correct!"
|
||
|
return False, "Nope."
|