Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Non-empty list comprehension solution in Clear category for Acceptable Password III by scribani.andres
def is_acceptable_password(password: str) -> bool:
digit = [d for d in password if d.isdigit() and not password.isdigit()]
return True if len(password) > 6 and digit else False
Aug. 11, 2020