Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
two_line solution in Clear category for Three Words by wii_caiji
import re
checkio = lambda words : True if re.search('[a-zA-Z]+ [a-zA-Z]+ [a-zA-Z]+', words) else False
July 22, 2020
Comments: