Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
^_^ solution in Clear category for Acceptable Password III by Anja_Romashova
def is_acceptable_password(password: str) -> bool:
return len(password) > 6 and any(map(str.isdigit, password)) and password.isdigit() == False
July 21, 2020