Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Acceptable Password IV by rossras
def is_acceptable_password(password: str) -> bool:
return len(password) >= 10 or all((
len(password) > 6,
any(digits := list(map(str.isdigit, password))),
not all(digits)
))
March 20, 2020