4 lines
214 B
Python
4 lines
214 B
Python
def grade(random, key):
|
|
if key.find("w0w_y0u_reached_th3_3nd_0f_my_tunnel") != -1:
|
|
return True, "You have travelled a long distance. Now rest a bit."
|
|
return False, "Not even close."
|