hottercolder.cpp: In function 'int rec(int, int, int)':
hottercolder.cpp:7:13: error: 'Guess' was not declared in this scope
7 | int x = Guess(m);
| ^~~~~
hottercolder.cpp:12:37: error: 'min' was not declared in this scope
12 | if(m <= last) return rec(l, min((m + last - 1) / 2, r), m);
| ^~~
hottercolder.cpp:13:25: error: 'max' was not declared in this scope
13 | else return rec(max(l, (m + last) / 2 + 1), r, m);
| ^~~
hottercolder.cpp:16:34: error: 'max' was not declared in this scope
16 | if(m <= last) return rec(max(l, (m + last) / 2 + 1), r, m);
| ^~~
hottercolder.cpp:17:28: error: 'min' was not declared in this scope
17 | else return rec(l, min((last + m - 1) / 2, r), m);
| ^~~
hottercolder.cpp: In function 'int HC(int)':
hottercolder.cpp:22:5: error: 'Guess' was not declared in this scope
22 | Guess(N / 2);
| ^~~~~