Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Python

Idiom #290 Sort sublist

Sort the part of the list items from index i (included) to index j (excluded), in place, using the comparator c.

Elements before i and after j must remain unchanged.

import functools
items[i:j] = sorted(items[i:j], key=functools.cmp_to_key(c))

c is an old-style comparison function
items[i:j] = sorted(items[i:j], key=c)

c is a key function, see the doc.
items.setRange(i, j, items.sublist(i, j)..sort(c));

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