5 lines
228 B
Python
5 lines
228 B
Python
|
def grade(key):
|
||
|
if key.find("col0rs_b4rcod3s_and_b1nary_f?n") != -1:
|
||
|
return True, "Nice! See, it wasn't nonsense after all :)"
|
||
|
return False, "My flags are also unlisted. I really don't like highlighting either."
|