MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / main

Function main

CPP/Problems/BitonicArray.cpp:83–95  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

81 }
82
83 int main () {
84 vector<int> numvect;
85 int num, target;
86 cin>>num;
87 cin>>target;
88 for (int i = 0; i < num; i++) {
89 int temp;
90 cin>>temp;
91 numvect.push_back(temp);
92 }
93 cout<<findElement(numvect, num, target);
94 return 0;
95 }

Callers

nothing calls this directly

Calls 2

findElementFunction · 0.85
push_backMethod · 0.80

Tested by

no test coverage detected