Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Split Pairs solution in Clear category for Split Pairs by JimmyCarlos
def split_pairs(s):
N = len(s)
if N % 2 == 1: s += "_"
return [s[i:i+2] for i in range(0,N,2)]
July 10, 2019