Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
I like to map it, map it solution in Clear category for Split Pairs by veky
import itertools, operator
def split_pairs(a):
it = itertools.chain(a, '_')
return map(operator.add, it, it)
June 10, 2019
Comments: