gap.cpp: In function 'long long int findGap(int, int)':
gap.cpp:10:24: warning: comparison of integer expressions of different signedness: 'std::vector<long long int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
10 | while(V.size() < n){
| ~~~~~~~~~^~~
gap.cpp:17:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
17 | for(int i=1;i<V.size();i++) ans = max(ans,V[i]-V[i-1]);
| ~^~~~~~~~~
gap.cpp:7:16: warning: control reaches end of non-void function [-Wreturn-type]
7 | vector<ll> V;
| ^