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