Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Acceptable Password VI by melitaele
def is_acceptable_password(a):
a = a.replace(' ', '')
if len(a) <= 6:
return False
elif (a.isdigit() or a.isalpha()) and len(a) <= 9:
return False
elif 'password' in a.lower():
return False
return len(set(a)) >= 3
April 23, 2021
Comments: