combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:6:29: error: 'alpha' was not declared in this scope; did you mean 'isalpha'?
6 | if (press("A")) p += 'A', alpha = "BXY";
| ^~~~~
| isalpha
combo.cpp:7:29: error: 'alpha' was not declared in this scope; did you mean 'isalpha'?
7 | if (press("B")) p += 'B', alpha = "AXY";
| ^~~~~
| isalpha
combo.cpp:8:29: error: 'alpha' was not declared in this scope; did you mean 'isalpha'?
8 | if (press("X")) p += 'X', alpha = "ABY";
| ^~~~~
| isalpha
combo.cpp:9:18: error: 'alpha' was not declared in this scope; did you mean 'isalpha'?
9 | else p += 'Y', alpha = "ABX";
| ^~~~~
| isalpha
combo.cpp:13:14: error: 'alpha' was not declared in this scope; did you mean 'isalpha'?
13 | p[i] = alpha[j];
| ^~~~~
| isalpha