| 22 | cout << "Not Found"; |
| 23 | } |
| 24 | int 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 | } |
nothing calls this directly
no test coverage detected