hidden.cpp: In function 'int ask(int, int, int)':
hidden.cpp:9:13: error: 'n0' was not declared in this scope; did you mean 'y0'?
9 | int w = n0 - x;
| ^~
| y0
hidden.cpp: In function 'std::vector<int> find_Sequence(int)':
hidden.cpp:16:14: error: 'n1' was not declared in this scope; did you mean 'n0'?
16 | int n0 = n1 = 0;
| ^~
| n0
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++)
| ~^~~~~~~~~~~~