Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
ThreeWords.c solution in Clear category for Three Words by trudnopodobny
def checkio(words: str) -> bool:
count = 0
for a in words.split():
if a.isalpha():
count += 1
if count >= 3: return True
else: count = 0
return False
Oct. 4, 2018
Comments: