Skip to content

Latest commit

 

History

History

challenge-30

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Merge sort

Description

Implement a merge sort algorithm.

Example

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