Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
To re Or not To re solution in Clear category for House Password by Infini7y
def checkio(data):
if len(data) < 10:
return False
# to re or not to re
import re
if re.match('.*[a-z]', data) is None:
return False
elif re.match('.*[A-Z]', data) is None:
return False
elif re.match('.*[0-9]', data) is None:
return False
return True
#Some hints
#Just check all conditions
July 28, 2015