Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Only index solution in Creative category for Acceptable Password I by Matt_Leroy
def is_acceptable_password(password):
return password.index(password[-1:]) > 6
May 25, 2023