Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
simple cycle solution in Clear category for Three Words by Cjkjvfnby
def checkio(words):
word_count = 0
for word in words.split():
if word.isalpha():
word_count += 1
else:
word_count = 0
if word_count == 3:
return True
return False
Feb. 26, 2014
Comments: