Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
using list and set solution in Clear category for House Password by thealfest1
def checkio(data: str) -> bool:
l = [(1 if s.isdigit() else 2 if s.isupper() else 3) for s in data]
return len(l) > 9 and len(set(l)) == 3
Jan. 21, 2019
Comments: