password.cpp:21:10: error: 'SIGMA_MAX' was not declared in this scope; did you mean 'SIZE_MAX'?
21 | int freq[SIGMA_MAX];
| ^~~~~~~~~
| SIZE_MAX
password.cpp: In function 'std::string guess(int, int)':
password.cpp:27:8: error: 'freq' was not declared in this scope; did you mean 'free'?
27 | freq[letter] = query (aux);
| ^~~~
| free
password.cpp:34:15: error: 'freq' was not declared in this scope; did you mean 'free'?
34 | if (freq[left] == 0) {
| ^~~~
| free
password.cpp:39:15: error: 'freq' was not declared in this scope; did you mean 'free'?
39 | if (freq[right] == 0) {
| ^~~~
| free
password.cpp:44:32: error: 'freq' was not declared in this scope; did you mean 'free'?
44 | aux = getCopy (left, freq[left]);
| ^~~~
| free
password.cpp:53:8: error: 'freq' was not declared in this scope; did you mean 'free'?
53 | freq[left] --;
| ^~~~
| free