cave.cpp: In function 'void exploreCave(long long int)':
cave.cpp:20:32: error: cannot convert 'long long int*' to 'int*'
20 | int u = tryCombination(S);
| ^
| |
| long long int*
In file included from cave.cpp:2:
cave.h:8:24: note: initializing argument 1 of 'int tryCombination(int*)'
8 | int tryCombination(int S[]);
| ~~~~^~~
cave.cpp:27:12: error: cannot convert 'long long int*' to 'int*'
27 | answer(S , D);
| ^
| |
| long long int*
cave.h:9:17: note: initializing argument 1 of 'void answer(int*, int*)'
9 | void answer(int S[], int D[]);
| ~~~~^~~