Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Acceptable Password III by twilyght
def is_acceptable_password(password: str) -> bool:
return len(password) > 6 and (0 < sum(c.isdigit() for c in password) < len(password))
May 3, 2020
Comments: