My issue
I am not not able to understand the problem, like what we need to do?
My code
#include <bits/stdc++.h>
using namespace std;
int main(){
int t;
cin>>t;
while(t--){
int n,k,l;
cin>>n>>k>>l;
vector<string>v;
for(int i=0;i<n;i++){
string s;
cin>>s;
v.push_back(s);
}
}
return 0;
}
Problem Link: N3 Problem - CodeChef