Submission #232001

#TimeUsernameProblemLanguageResultExecution timeMemory
232001BlerarghList of Unique Integers (FXCUP4_unique)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; int[] PickUnique(int N){ int ans[N], prevL=0, prevR=UniqueCounnt(0,N-1); memset(ans, 0, sizeof(ans)); for (int i=0; i<=N-1; i++){ int newL = UniqueCount(0,i); if (i!=N-1) int newR = UniqueCount(i+1,N-1); if (newL == prevL+1 && newR == prevR+1) { ans[i]=1; } prevL = newL; prevR = newR; } return ans; }

Compilation message (stderr)

unique.cpp:4:4: error: decomposition declaration cannot be declared with type 'int'
 int[] PickUnique(int N){
    ^~
unique.cpp:4:4: note: type must be cv-qualified 'auto' or reference to cv-qualified 'auto'
unique.cpp:4:4: error: empty decomposition declaration
unique.cpp:4:7: error: expected initializer before 'PickUnique'
 int[] PickUnique(int N){
       ^~~~~~~~~~