// BISMILLAH
#include "bits/stdc++.h"
#define fastIO std::ios::sync_with_stdio(0);std::cin.tie(0)
#define ll long long int
#define flush fflush(stdout)
// #define int ll
using pii = std::pair<int,int>;
const int MOD = 1000000007;
// const int MOD = 998244353;
const int mxN = 500005, inf = 1000000005;
signed main() {
// fastIO;
int testCases=1;
scanf("%lld",&testCases);
// std::cin >> testCases;
for (int T = 1; T <= testCases; T++) {
int N;
scanf("%d", &N);
bool a[101] = {0};
for (int i = 0, x; i < N; i++) {
scanf("%d", &x);
a[x] = 1;
}
bool ok = 1;
for (int i = 1; i <= N; i++) {
if (a[i] == 0) {
ok = 0;
break;
}
}
printf("%s\n", ok ? "YES" : "NO");
}
return 0;
}
/*
*/