There are no reviews yet. Be the first to send feedback to the community and the maintainers!
Repository Details
This is a Python implementation of the merge sort algorithm. Merge sort is a divide-and-conquer sorting algorithm that recursively breaks down an array into two halves, sorts each half independently, and then merges the sorted halves back together to produce a final sorted array.