Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for House Password by impetusx
def checkio(data: str) -> bool:
x = False
y = False
z = False
for i in range(len(data)):
if data[i].isupper():
x = True
elif data[i].islower():
y = True
elif data[i].isdigit():
z = True
return (len(data) >= 10)&x&y&z
Nov. 1, 2019