Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Acceptable Password II by new_hoschi
import re
# Taken from mission Acceptable Password I
def is_acceptable_password(password: str) -> bool:
return re.findall(r'[0-9]+',password)!=[] and len(password)>6
June 10, 2020