#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define ld double
#define oo 666666666

int main()
{
    ios::sync_with_stdio(0);cin.tie(0);
    int t,n;
    cin>>t;
    while(t--)
    {
        cin>>n;
        int A[101][101]={};
        for(int i=1; i<=n; i++)
            for(int j=1; j<=n; j++)
            cin>>A[i][j];

        bool ok = 1;
        for(int i=1; i<=n; i++)
            for(int j=1; j<=n; j++)
        {
            if(i+1<=n && A[i][j]==A[i+1][j])ok=0;
            if(j+1<=n && A[i][j]==A[i][j+1])ok=0;
        }

        cout<<(ok ? "Yes\n" : "No\n");
    }
}