Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Acceptable Password III by _Chico_
def is_acceptable_password(password: str) -> bool:
return len(password) > 6 and any(sym.isdigit() for sym in password) and not password.isdigit()
June 5, 2021