MCPcopy Create free account
hub / github.com/Seogeurim/CS-study / main

Function main

contents/algorithm/code/lis_brute.cpp:38–63  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

36
37
38int main(){
39 ios::sync_with_stdio(0);
40 cin.tie(0);
41 vector<int> arr;
42 int n, num;
43 cin >> n;
44 for(int i=0;i<n;i++) {
45 cin >> num;
46 arr.pb(num);
47 }
48 // arr.pb(10);
49 // arr.pb(20);
50 // arr.pb(10);
51 // arr.pb(30);
52 // arr.pb(20);
53 // arr.pb(50);
54 // arr.pb(40);
55 // arr.pb(25);
56 // arr.pb(20);
57 // arr.pb(50);
58 // arr.pb(30);
59 // arr.pb(70);
60 // arr.pb(85);
61
62 // cout << lis(arr) << "\n";
63}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected