combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:31:3: error: 'vector' was not declared in this scope
31 | vector<char> chrs;
| ^~~~~~
combo.cpp:4:1: note: 'std::vector' is defined in header '<vector>'; did you forget to '#include <vector>'?
3 | #include <set>
+++ |+#include <vector>
4 |
combo.cpp:31:10: error: expected primary-expression before 'char'
31 | vector<char> chrs;
| ^~~~
combo.cpp:32:19: error: 'chrs' was not declared in this scope
32 | for (auto u: s) chrs.push_back(u);
| ^~~~
combo.cpp:37:15: error: 'chrs' was not declared in this scope
37 | use = p + chrs[0] + chrs[0] + p + chrs[0] + chrs[1] + p + chrs[0] + chrs[2] + p + chrs[1];
| ^~~~
combo.cpp:43:13: error: 'chrs' was not declared in this scope
43 | use = p + chrs[0];
| ^~~~