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 sMiTeOne
def checkio(words_set):
for x in words_set:
for y in words_set:
if y[-len(x):] == x and y != x: return True
return False
Sept. 11, 2019