Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Using regex findall() solution in Clear category for Acceptable Password II by Fermax
import re
def is_acceptable_password(password: str) -> bool:
return len(re.findall(r'[\d]', password)) > 0 and len(password) > 6
March 21, 2020