aboutsummaryrefslogtreecommitdiff
path: root/08-03-2022(Div.3)/C.cpp
blob: f63ebcd554b84e3443645d1d0ba77480cac42daf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include<bits/stdc++.h>

using namespace std;

int main(){
    int tt;
    cin >> tt;
    while(tt--){
        list<int> ls;
        int len;
        int x;
        cin >> len;
        for(int i = 0; i < len; i++){
            cin >> x;
            ls.push_back(x);
        }
        

    }

    return 0;
}