Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
1 line solution solution in Clear category for House Password by fishsouprecipe
def checkio(data: str) -> bool:
return len(data) >= 10 and any(c.isupper() for c in data) and any(c.isdigit() for c in data) and any(c.islower() for c in data)
March 3, 2020