Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
五つ solution in Clear category for Acceptable Password V 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()))
March 19, 2020
Comments: