Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Three words solution in Clear category for Three Words by Damian_Horna
def checkio(words):
x = 0
for slowo in words.split():
if slowo.isalpha():
x += 1
else:
x = 0
if x == 3:
return True
return False
Oct. 15, 2016