Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
六つ solution in Clear category for Acceptable Password VI by veky
def is_acceptable_password(p: str) -> bool:
return ('password' not in p.casefold()
and (len(p) >= 10
or len(p) >= 6
and any(c.isdigit() for c in p)
and not p.isdigit())
and len(set(p)) >= 3)
March 19, 2020