molecules.cpp: In function 'std::vector<int> find_subset(int, int, std::vector<int>)':
molecules.cpp:16:13: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
16 | for(i=0;i<w.size();i++)
| ~^~~~~~~~~
molecules.cpp:28:10: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
28 | for(;i<w.size();)
| ~^~~~~~~~~
molecules.cpp:49:1: warning: control reaches end of non-void function [-Wreturn-type]
49 | }
| ^