Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Use FP, Luke! solution in Creative category for Split Pairs by obone
split_pairs = lambda a: [i + k for i, k in zip(a[::2], a[1::2] + '_')]
July 21, 2019
Comments: