hidden.cpp: In function 'std::vector<int> findSequence(int)':
hidden.cpp:34:26: error: 'ans' was not declared in this scope; did you mean 'abs'?
34 | for(int i=1;i<=n;i++)ans.pb(0);
| ^~~
| abs
hidden.cpp:35:12: error: 'ans' was not declared in this scope; did you mean 'abs'?
35 | return ans;
| ^~~
| abs
hidden.cpp:38:26: error: 'ans' was not declared in this scope; did you mean 'abs'?
38 | for(int i=1;i<=n;i++)ans.pb(1);
| ^~~
| abs
hidden.cpp:39:12: error: 'ans' was not declared in this scope; did you mean 'abs'?
39 | return ans;
| ^~~
| abs
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++)
| ~^~~~~~~~~~~~