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 bartholomewbrokka
def is_acceptable_password(password: str) -> bool:
digit = [x.isdigit() for x in password]
return len(password) > 9 or len(password) > 6 and any(digit) and not all(digit)
Jan. 29, 2021
Comments: