Submission #583989

#TimeUsernameProblemLanguageResultExecution timeMemory
583989YassineBenYounesPermutation (APIO22_perm)C++17
Compilation error
0 ms0 KiB
int[] construct_permutation(ll k){ k--; k--; int arr[k+1]; int index = 0; for(int i = k; i >= 0;i--){ arr[index] = i; index++; } return arr; }

Compilation message (stderr)

perm.cpp:1:4: error: structured binding declaration cannot have type 'int'
    1 | int[] construct_permutation(ll k){
      |    ^~
perm.cpp:1:4: note: type must be cv-qualified 'auto' or reference to cv-qualified 'auto'
perm.cpp:1:4: error: empty structured binding declaration
perm.cpp:1:7: error: expected initializer before 'construct_permutation'
    1 | int[] construct_permutation(ll k){
      |       ^~~~~~~~~~~~~~~~~~~~~