Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
three words solution in Uncategorized category for Three Words by sebastian.okseniuk
def checkio(words):
i = 0
for word in words.split():
if word.isalpha():
if i == 2: return True
i += 1
else: i = 0
return False
Dec. 2, 2015