Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
RegExp solution in Creative category for Acceptable Password III by Rush_iam
import re
def is_acceptable_password(password: str) -> bool:
return bool(re.search(r'(?=.{6,})(?=.*\d.*)(?=.*\D.*)', password))
Aug. 26, 2020