Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
re solution in Clear category for Acceptable Password V by tom-tom
import re
def is_acceptable_password(password: str) -> bool:
return bool(re.match('(?!^\d{,9}$)(?!.*password)((?=.*\d)(?=.*\D).{7,}|.{10,})', password, re.I))
April 2, 2020
Comments: