4 lines
182 B
Python
4 lines
182 B
Python
def grade(random, key):
|
|
if key.find("th1s_m4y_b3_th3_d1ff3r3nc3_y0u_w3r3_l00k1ng_4") != -1:
|
|
return True, "You got it! Great Job!"
|
|
return False, "No."
|