gap.cpp: In function 'long long int findGap(int, int)':
gap.cpp:16:17: warning: comparison of integer expressions of different signedness: 'std::vector<long long int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
16 | while(v.size() < n)
| ~~~~~~~~~^~~
gap.cpp:27:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
27 | for(int i = 1; i < v.size(); i++) ans = max(ans, v[i]-v[i-1]);
| ~~^~~~~~~~~~