Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for House Password by timiway
def checkio(data):
minu = False
maju = False
chif = False
if len(data)<10:
return False
for i in range(len(data)):
if data[i].isdigit() :
chif = True
if data[i].isupper():
maju = True
if data[i].islower():
minu = True
if minu and maju and chif:
return True
return False
#Some hints
#Just check all conditions
May 12, 2014
Comments: