Commit aff5eab6 authored by ='s avatar =

update implementation to merge-sort

parent 9c324ffc
......@@ -2,6 +2,7 @@
#include<vector>
#include "sorting.h"
using namespace std;
vector<int> merge_fun(vector<int> array1, vector<int> array2){
......@@ -50,4 +51,4 @@ vector<int> sort_custom(vector<int> inp){
vector<int> ans=merge_fun(out1,out2);
return ans;
}
}
\ No newline at end of file
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment