Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Just re solution in Clear category for Three Words by swagg010164
import re
def checkio(words: str) -> bool:
return bool(re.findall(r'(?:[A-Za-z]+\s){2}[A-Za-z]+', words.lower()))
Nov. 8, 2019
Comments: