horses.cpp:6:16: error: 'intX' has not been declared
int init(int N,intX[],int Y[]) {
^~~~
horses.cpp: In function 'int init(int, int*, int*)':
horses.cpp:8:7: error: 'X' was not declared in this scope
V[0]=X[0];
^
horses.cpp:11:41: error: expected ')' before ';' token
for(int i=0;i<N;i++)nx=max(nx,V[i]-Y[i];)
^
horses.cpp:11:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i=0;i<N;i++)nx=max(nx,V[i]-Y[i];)
^~~
horses.cpp:11:42: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
for(int i=0;i<N;i++)nx=max(nx,V[i]-Y[i];)
^
horses.cpp:11:42: error: expected primary-expression before ')' token
horses.cpp:14:1: warning: no return statement in function returning non-void [-Wreturn-type]
}
^
horses.cpp: In function 'int updatex(int, int)':
horses.cpp:16:17: warning: unused parameter 'pos' [-Wunused-parameter]
int updatex(int pos,int val){
^~~
horses.cpp:16:25: warning: unused parameter 'val' [-Wunused-parameter]
int updatex(int pos,int val){
^~~
horses.cpp: In function 'int updateY(int, int)':
horses.cpp:20:17: warning: unused parameter 'pos' [-Wunused-parameter]
int updateY(int pos, int val){
^~~
horses.cpp:20:26: warning: unused parameter 'val' [-Wunused-parameter]
int updateY(int pos, int val){
^~~