Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Lambda and endswith solution in Clear category for The End of Other by Wartem
def checkio(words_set):
for word in words_set:
if any(list(map(lambda x: word.endswith(x) and word!=x, words_set))):
return True
return False
July 30, 2022