Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
1line solution in Clear category for The End of Other by wooilkim
def checkio(words_set):
return any([True for a in words_set for b in words_set if len(a) < len(b) and b[-len(a):] == a])
May 31, 2021
Comments: