Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
re fullmatch solution in Creative category for Acceptable Password II by PythonWithPI
from re import compile
compose = lambda f: lambda g: lambda *a: f(g(*a))
is_acceptable_password = compose(bool)(compile("(?=.*\d).{7,}").fullmatch)
March 18, 2020
Comments: