Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for House Password by TovarischZhukov
import re
def checkio(passwd):
return re.search ("(?=^.{10,}$)(?=(\w*)(\d))(?=(\w*)([a-z]))(?=(\w*)([A-Z])).*$", passwd) is not None
Dec. 2, 2015
Comments: