#include using namespace std; int main(){ ios_base::sync_with_stdio(false); cin.tie(nullptr); int test; cin >> test; while(test--){ int N; cin >> N; vector A(N); for(auto &a : A) cin >> a; bool zero = false,two = false; for(int i=0; i