molecules.cpp: In function 'std::vector<int> find_subset(int, int, std::vector<int>)':
molecules.cpp:9:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
9 | for(int i=0; i<w.size(); i++){
| ~^~~~~~~~~
molecules.cpp:18:30: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'long long int' [-Wsign-compare]
18 | if(ans.size()==num) break;
| ~~~~~~~~~~^~~~~
molecules.cpp:31:38: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'long long int' [-Wsign-compare]
31 | if(ans.size()==i.second) break;
| ~~~~~~~~~~^~~~~~~~~~
molecules.cpp:35:38: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'long long int' [-Wsign-compare]
35 | if(ans.size()==i.second+num1) break;
| ~~~~~~~~~~^~~~~~~~~~~~~~~
molecules.cpp:48:38: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'long long int' [-Wsign-compare]
48 | if(ans.size()==i.second) break;
| ~~~~~~~~~~^~~~~~~~~~
molecules.cpp:52:38: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'long long int' [-Wsign-compare]
52 | if(ans.size()==i.second+num1) break;
| ~~~~~~~~~~^~~~~~~~~~~~~~~