Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Three Words by panaro32
def checkio(s):
l = [x.isalpha() for x in s.split()]
return [True]*3 in [l[i:i+3] for i in range(len(l)-2)]
May 11, 2014
Comments: