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 logicalladybuglifestyle
# Taken from mission Acceptable Password II
def is_acceptable_password(password: str) -> bool:
check = sum([i.isnumeric()for i in password])
return len(password) > 6 and check and check != len(password)
March 29, 2020