Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Creative category for House Password by flpo
from operator import methodcaller
from re import compile
TESTS = list(map(compile, ('\d', '[A-Z]', '[a-z]')))
checkio = lambda s: s.__len__().__gt__(9).__and__(all(map(methodcaller('search', s), TESTS)))
July 11, 2017