Commit 74f8a471 authored by KSHITIJ SINGHA's avatar KSHITIJ SINGHA

merged master with merge-sort

parents ebe6a3b5 da949617
......@@ -13,6 +13,7 @@ sorting.o: sorting.cpp
clean:
rm -rf a.out
<<<<<<< HEAD
=======
CC = g++
......@@ -28,3 +29,6 @@ sorting.o: sorting.cpp sorting.h
clean:
rm -rf *.o
>>>>>>> merge-sort
=======
>>>>>>> da94961751a78074e353150eec99910db0c9a8fc
......@@ -4,7 +4,11 @@
using namespace std;
<<<<<<< HEAD
<<<<<<< HEAD
=======
//from header file
>>>>>>> da94961751a78074e353150eec99910db0c9a8fc
vector<int> sort_custom(vector<int>& a);
void printVector(vector<int> a);
......
File added
<<<<<<< HEAD
#include <vector>
#include "sorting.h"
//
using namespace std;
vector<int> sort_custom(const vector<int>& a)
{
......
using namespace std;
<<<<<<< HEAD
<<<<<<< HEAD
=======
//func
>>>>>>> da94961751a78074e353150eec99910db0c9a8fc
vector<int> sort_custom(vector<int>& a);
void printVector(vector<int> a);
=======
......
File added
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