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