Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
regex one-line solution in Clear category for House Password by jayekaiser
import re
def checkio(data):
return bool(re.match(r"^(?=.*[0-9])(?=.*[a-z])(?=.*[A-Z]).{10,}", data))
March 13, 2015
Comments: