Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
lazy generator one line solution solution in Clear category for The End of Other by roenke
def checkio(words_set):
return any(word for word in words_set
for w in words_set
if word != w and word.endswith(w))
June 3, 2016
Comments: