Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for The End of Other by iv22
def checkio(words_set):
for word1 in words_set:
for word2 in words_set:
if word1 != word2:
if word1.endswith(word2):
return True
return False
Nov. 9, 2015