codezilla icon indicating copy to clipboard operation
codezilla copied to clipboard

Merge Sort in Python

Open sambey04 opened this issue 5 years ago • 0 comments

Merge Sort is a Divide and Conquer algorithm. It divides input array in two halves, calls itself for the two halves and then merges the two sorted halves.

sambey04 avatar Oct 15 '19 14:10 sambey04