Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
really nice solution in Clear category for Acceptable Password III by rafal.pawlowski
is_acceptable_password = lambda p: 0 < sum(c.isdigit() for c in p) < len(p) > 6
March 18, 2020
Comments: