Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Still 1 line solution in Clear category for Acceptable Password VI by mAzrunnr
def is_acceptable_password(p: str) -> bool:
return len(p)>6 and len(set(p))>2 and not('password' in p.lower()) and (len(p)>9 or (any(x.isdigit() for x in p) and any(x.isalpha() for x in p)))
June 12, 2021