Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Using unpacking solution in Clear category for Swap Nodes by ann3leo
def swap_nodes(a):
for i in range(1, len(a), 2):
a[i], a[i-1] = a[i-1], a[i]
return a
July 4, 2021