4 lines
141 B
Python
4 lines
141 B
Python
def grade(autogen, key):
|
|
if key.find("m0dul4r_fuN!") != -1:
|
|
return True, "Thanks!"
|
|
return False, "Nope. You've failed me :("
|