4 lines
204 B
Python
4 lines
204 B
Python
def grade(random, key):
|
|
if key.find("th1s_m4y_b3_th3_d1ff3r3nc3_y0u_w3r3_l00k1ng_4") != -1:
|
|
return True, "You spotted the difference!"
|
|
return False, "Not quite there yet."
|