Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Speedy category for Three Words by szymiziomal
def checkio(words):
found = False
counter = 0
for line in words.split():
if line.isalpha():
counter += 1
if counter >= 3:
found = True
break
if line.isdigit():
found = False
counter = 0
return found
Jan. 12, 2018