Description
Implement merge sort algorithm;
Input
a series of integers to be sorted ascendingly
Output
print the linear data structure after each merge operation
Sample Input Copy
38 27 43 3 9 82 10
Sample Output Copy
[27,38]
[3,43]
[3,27,38,43]
[9,82]
[10]
[9,10,82]
[3,9,10,27,38,43,82]