bank.cpp: In function 'bool rep(long long int, std::vector<long long int>, std::vector<long long int>)':
bank.cpp:17:8: 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]
17 | if (l >= b.size()) {
| ~~^~~~~~~~~~~
bank.cpp:18:21: 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]
18 | for (int i = 0; i < a.size(); i++)
| ~~^~~~~~~~~~
bank.cpp:19:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
19 | if (a[i]) return 0; return 1;
| ^~
bank.cpp:19:23: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
19 | if (a[i]) return 0; return 1;
| ^~~~~~
bank.cpp:18:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
18 | for (int i = 0; i < a.size(); i++)
| ^~~
bank.cpp:19:23: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
19 | if (a[i]) return 0; return 1;
| ^~~~~~
bank.cpp:23: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]
23 | for (int i = 0; i < a.size(); i++) {
| ~~^~~~~~~~~~