Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 133 Bytes

README.md

File metadata and controls

12 lines (8 loc) · 133 Bytes

Merge sort

Description

Implement a merge sort algorithm.

Example

Input:  [5, 2, 3, 1, 4]
Output: [1, 2, 3, 4, 5]