hidden.cpp: In function 'bool isSubsequence(std::vector<int>)':
hidden.cpp:19:10: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
19 | while(l < a.size() && r < S.size()){
| ~~^~~~~~~~~~
hidden.cpp:19:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
19 | while(l < a.size() && r < S.size()){
| ~~^~~~~~~~~~
hidden.cpp:23:13: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
23 | cout << (r == S.size() ? "YES" : "NO") << endl;
| ~~^~~~~~~~~~~
hidden.cpp:24:11: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
24 | return r == S.size();
| ~~^~~~~~~~~~~
hidden.cpp: In function 'int main()':
hidden.cpp:137:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
137 | for(auto i : ans) cout << i << ' '; cout << endl;
| ^~~
hidden.cpp:137:38: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
137 | for(auto i : ans) cout << i << ' '; cout << endl;
| ^~~~
grader.cpp: In function 'int main()':
grader.cpp:28:26: warning: format '%d' expects argument of type 'int', but argument 3 has type 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wformat=]
28 | fprintf (fifo_out, "%d\n", ans.size ());
| ~^ ~~~~~~~~~~~
| | |
| int std::vector<int>::size_type {aka long unsigned int}
| %ld
grader.cpp:29:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
29 | for (int i=0; i<ans.size () && i < N; i++)
| ~^~~~~~~~~~~~
/usr/bin/ld: /tmp/ccnYVXoA.o: in function `isSubsequence(std::vector<int, std::allocator<int> >)':
grader.cpp:(.text+0x0): multiple definition of `isSubsequence(std::vector<int, std::allocator<int> >)'; /tmp/ccUr9fhB.o:hidden.cpp:(.text+0x0): first defined here
/usr/bin/ld: /tmp/ccnYVXoA.o: in function `main':
grader.cpp:(.text.startup+0x0): multiple definition of `main'; /tmp/ccUr9fhB.o:hidden.cpp:(.text.startup+0x0): first defined here
collect2: error: ld returned 1 exit status