Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for House Password by vashrepetitor05
import re
def checkio(data: str) -> bool:
if re.match('^(?=.*[a-z]+)(?=.*[A-Z]+)(?=.*[0-9]+)[A-Za-z0-9]{10,}$', data):
return True
return False
Oct. 15, 2019
Comments: