popa.cpp:2:10: error: #include expects "FILENAME" or <FILENAME>
#include popa.h
^~~~
popa.cpp: In function 'int solve(int, int*, int*)':
popa.cpp:18:32: warning: argument to 'sizeof' in 'void* memset(void*, int, size_t)' call is the same expression as the destination; did you mean to dereference it? [-Wsizeof-pointer-memaccess]
memset (Left,-1,sizeof Left);
^~~~
popa.cpp:19:33: warning: argument to 'sizeof' in 'void* memset(void*, int, size_t)' call is the same expression as the destination; did you mean to dereference it? [-Wsizeof-pointer-memaccess]
memset (Right,-1,sizeof Right);
^~~~~
popa.cpp:44:1: error: expected '}' at end of input
}
^
popa.cpp:44:1: warning: control reaches end of non-void function [-Wreturn-type]
}
^