summaryrefslogtreecommitdiffstats
path: root/Main/C++/test.cpp
blob: 97b947698eb01895f70a0aae39cbd363f01028b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include <bits/stdc++.h>
using namespace std;

void print_v(vector<int> v)
{
    for (int i = 0; i < v.size(); i++)
    {
        cout << v[i] << " ";
    }
    cout << endl;
}

int main()
{
//    vector<int> v{1,2,3};
//    vector<int> v2 = v;
//    print_v(v);
//    print_v(v2);
//    v2[1] = 4;
//    print_v(v);
//    print_v(v2);


//vector<unordered_set<int>,vector<int>> v;

    return 0;
}