Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Clear category for Three Words by Wakko_Warner
def checkio(words):
counter = 0
result = False
for word in words.split():
if word.isalpha():
counter += 1
if counter >= 3: result = True
else:
counter = 0
return result
Nov. 19, 2020
Comments: