Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Short code solution in Clear category for Three Words by new_hoschi
import re
def checkio(words: str) -> bool:
# find all the consecutive word patterns (neither starting nor ending with
# a whitespace)
patterns=re.findall(r'(?!\s)[A-Za-z\s]+(?=3 if patterns else False
April 22, 2020
Comments: