Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
easy solution in Clear category for Swap Nodes by rafal.pawlowski
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 11, 2019