Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Swap Nodes by Moff
def swap_nodes(a):
for i in range(0, len(a) - 1, 2):
a[i], a[i+1] = a[i+1], a[i]
return a
April 8, 2019