Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for House Password by twilyght
def checkio(data: str) -> bool:
valid = len(data) >= 10 and \
any(c.isdigit() for c in data) and \
any(c.isupper() for c in data) and \
any(c.islower() for c in data)
return valid
May 23, 2020
Comments: