Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Split Pairs by tihenko
def split_pairs(a):
a+="_";
result=[];
while len(a)>1:
result.append(a[:2]);
a = a[2:];
return result
July 16, 2020