Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
house-password solution in Creative category for House Password by sandarovich
def checkio(data):
return (len(data) >= 10) * \
(len(list(filter(lambda x: x.isdigit(), data))) >= 1) * \
(len(list(filter(lambda x: x.isupper(), data))) >= 1) * \
(len(list(filter(lambda x: x.islower(), data))) >= 1)
#Some hints
#Just check all conditions
May 13, 2014
Comments: