cave.cpp:11:35: warning: `\U0000037e' is not in NFC [-Wnormalized=]
11 | int a=tryCombination(x[N]);
| ^
cave.cpp: In function 'void exploreCave(int)':
cave.cpp:7:5: error: 'fill' was not declared in this scope
7 | fill(s,s+N,0);
| ^~~~
cave.cpp:11:33: error: invalid conversion from 'int' to 'int*' [-fpermissive]
11 | int a=tryCombination(x[N]);
| ~~~^
| |
| int
In file included from cave.cpp:1:
cave.h:8:24: note: initializing argument 1 of 'int tryCombination(int*)'
8 | int tryCombination(int S[]);
| ~~~~^~~
cave.cpp:11:35: error: expected ',' or ';' before '\U0000037e'
11 | int a=tryCombination(x[N]);
| ^
cave.cpp:26:12: error: return-statement with a value, in function returning 'void' [-fpermissive]
26 | return 0;
| ^