Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Fix solution in Clear category for The End of Other by tihenko
def checkio(words_set):
for word_check in words_set: #check all words one by one
for word in words_set:
if word_check.endswith(word) and word_check!=word: #check suffix not allow word to be its own suffix
return True
return False
March 2, 2014