My issue
My code
#include <iostream>
using namespace std;
int main() {
// your code goes here
int t;
cin>>t;
while(t--){
int n;
cin>>n;
char arr[20]={"START38","LTIME108"};
for(int i=0;i<n;i++){
cin>>arr[20];
}
int count=0;
for(int i=0;i<n;i++){
if(arr[i]=="START38"){
count++;
}
}
cout<<count<<n-count<<endl;
}
return 0;
}
Problem Link: RECENTCONT Problem - CodeChef