Logo

Programming-Idioms

  • Python
  • Smalltalk
  • Groovy

Idiom #357 Swap elements of list

Swap the elements at indices i, j in the list items

items.swap(i, j)
items[i], items[j] = items[j], items[i]
items[i], items[j] = items[j], items[i]

New implementation...
< >
programming-idioms.org