fork download
  1. #include <iostream>
  2. #include <deque>
  3. #include <string>
  4.  
  5. using namespace std;
  6.  
  7. string processKeys(const string& keys) {
  8. deque<char> text;
  9. auto cursor = text.begin();
  10.  
  11. for (char key : keys) {
  12. if (key == '[') {
  13. cursor = text.begin();
  14. } else if (key == ']') {
  15. cursor = text.end();
  16. } else {
  17. text.insert(cursor, key);
  18. }
  19. }
  20.  
  21. return string(text.begin(), text.end());
  22. }
  23.  
  24. int main() {
  25. int testCases;
  26. cin >> testCases;
  27. cin.ignore(); // لتجاهل السطر الجديد بعد عدد الحالات
  28.  
  29. for (int i = 0; i < testCases; ++i) {
  30. string keys;
  31. getline(cin, keys);
  32. cout << processKeys(keys) << endl;
  33. }
  34.  
  35. return 0;
  36. }
Success #stdin #stdout 0.01s 5284KB
stdin
Name[My_]_Is_Mohemd
stdout
Standard output is empty