Commit 8d9e94af authored by Neeraj Kerkar's avatar Neeraj Kerkar

update implementation to merge-sort

parent 09db1b5c
...@@ -2,6 +2,8 @@ ...@@ -2,6 +2,8 @@
using namespace std; using namespace std;
//update implementation to merge sort
vector<int> merge(const vector<int>& left, const vector<int>& right) vector<int> merge(const vector<int>& left, const vector<int>& right)
{ {
// Fill the resultant vector with sorted results from both vectors // Fill the resultant vector with sorted results from both vectors
......
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