My issue
im not understood the problem
My code
#include <stdio.h>
int main(void) {
// your code goes here
int t;
scanf("%d",&t);
while(t--)
{
int n;
scanf("%d",&n);
int a[n];
for(int i=0;i<n;i++)
{
scanf("%d",a[i]);
}
}
return 0;
}
Problem Link: MISSP Problem - CodeChef