Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for House Password by maxadamski
def checkio(data):
number_count = sum(1 for e in data if e.isdigit())
upper_count = sum(1 for e in data if e.isupper())
lower_count = sum(1 for e in data if e.islower())
return len(data) >= 10 and number_count >= 1 and upper_count >= 1 and lower_count >= 1
Oct. 19, 2017