#include using namespace std; int cnt[10],dp[1<<10][6],tot[1<<10]; int main(){ int T,n; cin>>T; char str[10]; while(T--){ cin>>n; memset(cnt,0,sizeof(cnt)); memset(tot,0,sizeof(tot)); memset(dp,63,sizeof(dp)); for(int i=1;i<=n;i++){ scanf("%s",str); cnt[str[4]-'0']++; } for(int i=1;i<(1<<10);i++){ for(int j=0;j<10;j++) if(i&(1<