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