Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
HousePassword.c solution in Clear category for House Password by trudnopodobny
def checkio(data: str) -> bool:
upper = False
lower = False
digit = False
if len(data) < 10:
return False
for a in data:
if a.isupper():
upper = True
if a.islower():
lower = True
if a.isdigit():
digit = True
return upper and lower and digit
Oct. 5, 2018
Comments: