Skip to content
Advertisement

Tag: stable-sort

Implementation of stable_sort in python

In c++ there is a function stable_sort() function (It preserves the order ) .Is there any function in python like this ? Answer list.sort() is stable. From the documentation: The sort() method is guaranteed to be stable. A sort is stable if it guarantees not to change the relative order of elements that compare equal — this is helpful for

Advertisement