Open
Description
Description of the problem
Timsort is a hybrid stable sorting algorithm, derived from merge sort and insertion sort, designed to perform well on many kinds of real-world data. It is already there in Python so a parallel version of the same algorithm should be added.
Example of the problem
This sorting algorithm is implemented in python by default as sort() and sorted() methods