Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Using re solution in Clear category for Three Words by littleplatypus
import re
def checkio(words: str) -> bool:
return bool(re.search(r'[a-zA-Z]\s[a-zA-Z]+?\s[a-zA-Z]', words))
Oct. 8, 2025