gap.cpp: In function 'long long int findGap(int, int)':
gap.cpp:12:31: warning: comparison of integer expressions of different signedness: 'std::vector<long long int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
12 | while(L.size() + R.size() < N){
| ~~~~~~~~~~~~~~~~~~~~^~~
gap.cpp:29:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
29 | for(int i = 1; i < v.size(); i++)
| ~~^~~~~~~~~~
gap.cpp:13:13: warning: 'mn' may be used uninitialized in this function [-Wmaybe-uninitialized]
13 | MinMax(LO,HI, mn, mx);
| ~~~~~~^~~~~~~~~~~~~~~
gap.cpp:13:13: warning: 'mx' may be used uninitialized in this function [-Wmaybe-uninitialized]