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 W.Zalicki
def checkio(words):
row = 0
iss = False
for i in words.split():
if i.isalpha():
row += 1
else:
row = 0
if row == 3:
iss = True
return iss
Oct. 15, 2017
Comments: