Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for The End of Other by TovarischZhukov
def checkio(lstInput):
return bool([elem for i, elem in enumerate(list(lstInput)) for val in list(lstInput)[:i] + list(lstInput)[i + 1:] if val.rfind(elem) != -1 and (val.rfind(elem) == len(val) - len(elem))])
Dec. 3, 2015