Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Simple solution in Clear category for Acceptable Password VI by thealfest1
def is_acceptable_password(password: str) -> bool:
return len(set(password)) > 2 and (len(password) > 9
or (0 < sum(char.isdigit() for char in password) < len(password) > 6)
) and not 'password' in password.casefold()
March 19, 2020
Comments: