Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Split Pairs by hkgok1
def split_pairs(a):
# your code here
l = len(a)
if l % 2 != 0:
l +=1
a +='_'
cnt = 0
res = []
while cnt < len(a):
#print(a[cnt:cnt+2])
res.append(a[cnt:cnt+2])
#if cnt+2 != len(a):
# res +=','
cnt += 2
return tuple(res)
if __name__ == '__main__':
print("Example:")
print(list(split_pairs('abcd')))
# These "asserts" are used for self-checking and not for an auto-testing
assert list(split_pairs('abcd')) == ['ab', 'cd']
assert list(split_pairs('abc')) == ['ab', 'c_']
assert list(split_pairs('abcdf')) == ['ab', 'cd', 'f_']
assert list(split_pairs('a')) == ['a_']
assert list(split_pairs('')) == []
print("Coding complete? Click 'Check' to earn cool rewards!")
March 6, 2022
Comments: