Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Creative category for The End of Other by Uladzimir
from itertools import product
def checkio(words):
for i, j in product(words, words):
if i != j and i.endswith(j): return True
return False
Feb. 20, 2014
Comments: