molecules.cpp: In function 'std::vector<int> find_subset(int, int, std::vector<int>)':
molecules.cpp:10:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
10 | if (p*w[0]==l&&p<=w.size())
| ~^~~~~~~~~~
molecules.cpp:13:45: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
13 | else if ((p+1)*w[0]>=l&&(p+1)*w[0]<=u&&p<=w.size())
| ~^~~~~~~~~~