Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Creative category for Three Words by LLluma
from itertools import islice
def checkio(words):
return any(all(map(str.isalpha, trigram)) for trigram in zip( *(islice(words.split(' '), i, None) for i in range(3)) ))
#These "asserts" using only for self-checking and not necessary for auto-testing
April 22, 2014
Comments: