Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Three Words by JingMeng
def checkio(words):
c = 0
for i in words.split(' '):
c = (c + 1) if i.isalpha() else 0
if c == 3:
return True
return False
June 20, 2019
Comments: