molecules.cpp: In function 'std::vector<int> find_subset(int, int, std::vector<int>)':
molecules.cpp:13:16: warning: comparison of integer expressions of different signedness: 'll' {aka 'int'} and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
13 | for (i = 0; i < w.size(); i++) {
| ~~^~~~~~~~~~
molecules.cpp:17:16: warning: comparison of integer expressions of different signedness: 'll' {aka 'int'} and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
17 | for (i = 1; i < w.size(); i++) {
| ~~^~~~~~~~~~
molecules.cpp:25:12: warning: comparison of integer expressions of different signedness: 'll' {aka 'int'} and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
25 | if (high > w.size()) break;
| ~~~~~^~~~~~~~~~
molecules.cpp:23:7: warning: variable 'c' set but not used [-Wunused-but-set-variable]
23 | bool c = false;
| ^