dango3.cpp: In function 'void Solve(int, int)':
dango3.cpp:52:37: error: invalid initialization of reference of type 'const std::vector<int>&' from expression of type 'std::vector<std::vector<int> >'
52 | for (int i = 0; i < m; i++) Answer(ans);
| ^~~
In file included from dango3.cpp:1:
dango3.h:6:37: note: in passing argument 1 of 'void Answer(const std::vector<int>&)'
6 | void Answer(const std::vector<int> &a);
| ~~~~~~~~~~~~~~~~~~~~~~~~^
dango3.cpp: At global scope:
dango3.cpp:7:5: warning: '{anonymous}::variable_example' defined but not used [-Wunused-variable]
7 | int variable_example = 1;
| ^~~~~~~~~~~~~~~~