Main.cpp: In function 'int32_t main()':
Main.cpp:22:20: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
22 | for(int j = 0; j < arr.size(); j++) {
| ~~^~~~~~~~~~~~
Main.cpp:33:20: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
33 | for(int i = 0; i < arr.size(); i++) {
| ~~^~~~~~~~~~~~
Main.cpp:43:20: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
43 | for(int i = 0; i < arr.size() - 1; i++) {
| ~~^~~~~~~~~~~~~~~~
Main.cpp:28:3: warning: 'from' may be used uninitialized in this function [-Wmaybe-uninitialized]
28 | if(!from) {
| ^~