hidden.cpp: In function 'std::vector<int> findSequence(int)':
hidden.cpp:18:7: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
18 | if (x==0) break; v.clear();
| ^~
hidden.cpp:18:24: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
18 | if (x==0) break; v.clear();
| ^
hidden.cpp:27:4: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
27 | for (int i=1; i<=N; i++) ans.pb(0); return ans;
| ^~~
hidden.cpp:27:40: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
27 | for (int i=1; i<=N; i++) ans.pb(0); return ans;
| ^~~~~~
hidden.cpp:30:4: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
30 | for (int i=1; i<=N; i++) ans.pb(1); return ans;
| ^~~
hidden.cpp:30:40: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
30 | for (int i=1; i<=N; i++) ans.pb(1); return ans;
| ^~~~~~
hidden.cpp:69:7: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
69 | if (x==0) break; v.clear();
| ^~
hidden.cpp:69:24: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
69 | if (x==0) break; v.clear();
| ^
hidden.cpp:77:4: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
77 | for (int i=1; i<=N; i++) ans.pb(1); return ans;
| ^~~
hidden.cpp:77:40: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
77 | for (int i=1; i<=N; i++) ans.pb(1); return ans;
| ^~~~~~
hidden.cpp:80:4: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
80 | for (int i=1; i<=N; i++) ans.pb(0); return ans;
| ^~~
hidden.cpp:80:40: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
80 | for (int i=1; i<=N; i++) ans.pb(0); return ans;
| ^~~~~~
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++)
| ~^~~~~~~~~~~~