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