combo.cpp: In function 'std::string get_sequence(int)':
combo.cpp:21:20: error: expected primary-expression before '=' token
21 | if(abc[i]!==p[0])continue ;
| ^
combo.cpp:22:21: error: 's' was not declared in this scope
22 | if(i<=1)b = s[i];
| ^
combo.cpp:23:26: error: 's' was not declared in this scope
23 | else if(i==2)x = s[i];
| ^
combo.cpp:24:18: error: 's' was not declared in this scope
24 | else y = s[i];
| ^
combo.cpp:34:8: error: 'N' was not declared in this scope
34 | if(N>1){
| ^
combo.cpp:44:13: error: expected ';' before '}' token
44 | return p
| ^
| ;
45 |
46 | }
| ~