lang.cpp:14:1: error: 'unordered_set' does not name a type
14 | unordered_set<int> S[56];
| ^~~~~~~~~~~~~
lang.cpp: In function 'void excerpt(int*)':
lang.cpp:40:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
40 | for (int j=0;j<sample.size();j++) score += S[i].count(sample[j]);
| ~^~~~~~~~~~~~~~
lang.cpp:40:52: error: 'S' was not declared in this scope
40 | for (int j=0;j<sample.size();j++) score += S[i].count(sample[j]);
| ^
lang.cpp:50:5: error: 'S' was not declared in this scope
50 | S[target].insert(sample.begin(), sample.end());
| ^