Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Set permutations solution in Creative category for The End of Other by nickie
from itertools import permutations
checkio = lambda s: any(1 for a, b in permutations(s, 2) if a.endswith(b))
Feb. 20, 2014
Comments: