Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Its work! And for what? solution in Clear category for Three Words by samatdav02
import re
def checkio(words: str) -> bool:
return True if re.search(r'\D+ \D+ \D+',words) else False
June 30, 2019
Comments: