perm.cpp: In function 'std::vector<int> construct_permutation(long long int)':
perm.cpp:24:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
24 | for (int i = 1; i < bytes.size(); i++) {
| ~~^~~~~~~~~~~~~~
perm.cpp:26:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
26 | for (int j = 0; j < ans.size(); j++) {
| ~~^~~~~~~~~~~~
perm.cpp:34:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
34 | for (int j = 0; j < ans.size(); j++) {
| ~~^~~~~~~~~~~~