hidden.cpp: In lambda function:
hidden.cpp:34:34: error: invalid use of void expression
34 | return isSubsequence(Get(o[0] + 1 , one - o[1] , 0));
| ~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
hidden.cpp:36:37: error: could not convert '((& o)->std::vector<int>::operator[](1) + 1)' from '__gnu_cxx::__alloc_traits<std::allocator<int>, int>::value_type' {aka 'int'} to 'std::vector<int>'
36 | return !isSubsequence(o[1] + 1 , zero - o[0] , 1);
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++)
| ~^~~~~~~~~~~~