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

Function main

CPP/recursion/first_occur.cpp:24–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22 cout << "Not Found";
23}
24int main(){
25 cin.tie(0)->sync_with_stdio(0);
26 int arr[]={1,2,4,4,4,6};
27 int n=sizeof(arr)/sizeof(int);
28 int key;
29 key=4;
30 findFirstAndLast(arr,n,key);
31
32
33 return 0;
34}

Callers

nothing calls this directly

Calls 1

findFirstAndLastFunction · 0.85

Tested by

no test coverage detected