Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Clear category for House Password by lancelote
def checkio(data):
return len(data) >= 10 and all(
any(map(rule, data))
for rule in (str.isdigit, str.isupper, str.islower))
May 17, 2015
Comments: