why codeforcesgive me a compilation error while all other compile give me the write output?
[submission:181542252] [problem:R. Palindrome Array] ~~~~~
include<bits/stdc++.h>
using namespace std; int size; int pr=0,pl=0; void read(long long ar[], int s){ for (int i = 0; i < s; ++i) { cin>>ar[i]; pr++; } } void palindrome (long long ar[]){ if(pr==(size-1)/2){ cout<<"YES"; return; } if(ar[pl]==ar[pr-1]){ ++pl; --pr; return palindrome(ar); } else{ cout<<"NO"; return; } } int main () { cin>>size; long long array[size]; read(array,size); palindrome(array); return 0; } ~~~~~ https://codeforces.net/group/MWSDmqGsZm/contest/223339/submission/181542252