Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Acceptable Password IV by tokareva.anastasiya.tch
import re
def is_acceptable_password(password):
return bool(re.match(r'(?=.*\d)(?=.*\D)(.+){6,}|(.+){9,}', password))
Sept. 17, 2022
Comments: