Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First. one-liner solution in Clear category for Acceptable Password II by leggewie
def is_acceptable_password(password: str) -> bool:
return len(password) > 6 and any(char.isdigit() for char in password)
June 6, 2021