Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Solution with groupby and any solution in Clear category for Three Words by Gi-gik
from itertools import groupby
def checkio(words: str) -> bool:
groups = groupby(x.isalpha() for x in words.split())
return any(isalph and len(list(group))>=3 for isalph, group in groups)
Dec. 4, 2020
Comments: