Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
once again solution in Clear category for Acceptable Password VI by tom-tom
def is_acceptable_password(pw: str) -> bool:
return ((not all(map(str.isdigit, pw)) and
(len(pw) > 6) and any(map(str.isdigit, pw)) or len(pw) >= 10) and
'password' not in pw.lower() and len(set(pw)) >= 3)
July 13, 2020