Logo

Programming-Idioms

  • Kotlin

Idiom #357 Swap elements of list

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

items[i], items[j] = items[j], items[i]

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