Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Acceptable Password VI by martin_b
def is_acceptable_password(p: str) -> bool:
return len(set(p))>2 and not 'password' in p.lower() and (len(p) > 9 or len(p) > 6 and any(i.isdigit() for i in p) and not all(i.isdigit() for i in p))
Dec. 27, 2020
Comments: