cave.cpp: In function 'int f(int, int)':
cave.cpp:24:18: error: 'tryCombination' was not declared in this scope
24 | int nfirst = tryCombination(a);
| ^~~~~~~~~~~~~~
cave.cpp: In function 'void exploreCave(int)':
cave.cpp:36:13: error: 'tryCombination' was not declared in this scope
36 | first = tryCombination(a);
| ^~~~~~~~~~~~~~
cave.cpp:42:5: error: 'answer' was not declared in this scope
42 | answer(a, connected);
| ^~~~~~
cave.cpp: In function 'int f(int, int)':
cave.cpp:27:6: warning: control reaches end of non-void function [-Wreturn-type]
27 | f(l, r);
| ~^~~~~~