Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
with re solution in Clear category for Three Words by vby
import re
def checkio(words: str) -> bool:
return bool(re.search('[a-zA-Z]+ [a-zA-Z]+ [a-zA-Z]+', words))
Jan. 16, 2021
Comments: