Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
one line solution in Clear category for House Password by u8m_
# migrated from python 2.7
checkio = lambda data: True if (len(data)>9 and data!=data.lower() and data!=data.upper() and sum([x.isdigit() for x in data])>0) else False
Nov. 11, 2015
Comments: