Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for House Password by caraballo809
import re
def checkio(data):
MATCH = '((?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{10,20})'
return re.match(MATCH, data)
June 3, 2014