Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
starmap(str.endswith) solution in Clear category for The End of Other by flpo
from itertools import permutations, starmap
def checkio(words: set) -> bool:
return any(starmap(str.endswith, permutations(words, 2)))
May 21, 2018
Comments: