Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Clear category for Acceptable Password V by MBM_1607
def is_acceptable_password(password: str) -> bool:
return (
(
len(password) > 6
and any(map(str.isdigit, password))
and not all(map(str.isdigit, password))
or len(password) >= 10
)
and not "password" in password.lower()
)
April 5, 2020