unique.cpp: In function 'std::vector<int> PickUnique(int)':
unique.cpp:5:26: error: expected ';' before 'ans'
5 | vector<int>(n, 1) ans;
| ^~~~
| ;
unique.cpp:9:34: error: 'ans' was not declared in this scope; did you mean 'abs'?
9 | if (res <= prev) ans[i] = 0;
| ^~~
| abs
unique.cpp:15:34: error: 'ans' was not declared in this scope; did you mean 'abs'?
15 | if (res <= prev) ans[i] = 0;
| ^~~
| abs
unique.cpp:18:16: error: 'ans' was not declared in this scope; did you mean 'abs'?
18 | return ans;
| ^~~
| abs