molecules.cpp: In function 'std::vector<int> find_subset(int, int, std::vector<int>)':
molecules.cpp:25:13: warning: comparison of integer expressions of different signedness: 'int' and 'long long unsigned int' [-Wsign-compare]
25 | if(l<= sum and sum <= u){
| ~^~~~~~
molecules.cpp:25:28: warning: comparison of integer expressions of different signedness: 'long long unsigned int' and 'int' [-Wsign-compare]
25 | if(l<= sum and sum <= u){
| ~~~~^~~~
molecules.cpp:27:29: warning: comparison of integer expressions of different signedness: 'int' and 'long long unsigned int' [-Wsign-compare]
27 | for(int j=left;j<i+1;j++){
| ~^~~~
molecules.cpp:34:19: warning: comparison of integer expressions of different signedness: 'long long unsigned int' and 'int' [-Wsign-compare]
34 | while(sum > u){
| ~~~~^~~
molecules.cpp:39:13: warning: comparison of integer expressions of different signedness: 'int' and 'long long unsigned int' [-Wsign-compare]
39 | if(l<= sum and sum <= u){
| ~^~~~~~
molecules.cpp:39:28: warning: comparison of integer expressions of different signedness: 'long long unsigned int' and 'int' [-Wsign-compare]
39 | if(l<= sum and sum <= u){
| ~~~~^~~~
molecules.cpp:41:29: warning: comparison of integer expressions of different signedness: 'int' and 'long long unsigned int' [-Wsign-compare]
41 | for(int j=left;j<i+1;j++){
| ~^~~~