| 22 | |
| 23 | |
| 24 | int main() |
| 25 | { |
| 26 | int t; |
| 27 | cin>>t; |
| 28 | while(t--){ |
| 29 | int n,m,k; |
| 30 | cin>>n>>m>>k; |
| 31 | int arr1[n],arr2[m]; |
| 32 | for(int i=0;i<n;i++) |
| 33 | cin>>arr1[i]; |
| 34 | for(int i=0;i<m; i++) |
| 35 | cin>>arr2[i]; |
| 36 | |
| 37 | Solution ob; |
| 38 | cout << ob.kthElement(arr1, arr2, n, m, k)<<endl; |
| 39 | |
| 40 | } |
| 41 | |
| 42 | return 0; |
| 43 | } |
nothing calls this directly
no test coverage detected