Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
oneliner solution in Creative category for Acceptable Password II by melvin.pihlman
is_acceptable_password = lambda password: len(password) > 6 and bool(set(password).intersection("0123456789"))
April 13, 2021
Comments: