4 lines
184 B
Python
4 lines
184 B
Python
def grade(autogen, key):
|
|
if key.find("it's_2017_who_still_uses_php?(jk_82.5%_of_websites)") != -1:
|
|
return True, "You got it!"
|
|
return False, "Nope. Keep poking around."
|