-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathString_palindrom.cpp
More file actions
48 lines (38 loc) · 832 Bytes
/
Copy pathString_palindrom.cpp
File metadata and controls
48 lines (38 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//{ Driver Code Starts
//Initial Template for C++
#include <bits/stdc++.h>
using namespace std;
// } Driver Code Ends
//User function Template for C++
class Solution{
public:
bool makePalindrome(int n,vector<string> &arr){
// Code here
unordered_set<string>st;
unordered_map<string,int>m,p;
for(auto it:arr){
m[it]++;
reverse(it.begin(),it.end());
p[it]++;
}
return m==p;
}
};
//{ Driver Code Starts.
int main(){
int t;
cin>>t;
while(t--){
int n;
cin>>n;
vector<string> arr(n);
for(int i=0;i<n;i++){
cin>>arr[i];
}
Solution ob;
if(ob.makePalindrome(n,arr)) cout<<"YES"<<endl;
else cout<<"NO"<<endl;
}
return 0;
}
// } Driver Code Ends