Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
6-liner: cleanest for full character range solution in Clear category for House Password by przemyslaw.daniel
def checkio(text):
is_any = lambda f: any(f(x) for x in text)
return is_any(str.isupper) and \
is_any(str.islower) and \
is_any(str.isdigit) and \
len(text) >= 10
Jan. 4, 2018