molecules.cpp: In function 'std::vector<int> find_subset(int, int, std::vector<int>)':
molecules.cpp:14:34: warning: comparison of integer expressions of different signedness: 'uint32_t' {aka 'unsigned int'} and 'int' [-Wsign-compare]
14 | while (i < w.size() && T + w[i] <= u) {
| ~~~~~~~~~^~~~
molecules.cpp:20:27: warning: comparison of integer expressions of different signedness: 'uint32_t' {aka 'unsigned int'} and 'int' [-Wsign-compare]
20 | while (i < w.size() && T < l) {
| ~~^~~
molecules.cpp:26:11: warning: comparison of integer expressions of different signedness: 'int' and 'uint32_t' {aka 'unsigned int'} [-Wsign-compare]
26 | return l <= T && T <= u ? S : std::vector<int>{};
| ~~^~~~
molecules.cpp:26:21: warning: comparison of integer expressions of different signedness: 'uint32_t' {aka 'unsigned int'} and 'int' [-Wsign-compare]
26 | return l <= T && T <= u ? S : std::vector<int>{};
| ~~^~~~