-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanagram.cpp
More file actions
32 lines (30 loc) · 705 Bytes
/
anagram.cpp
File metadata and controls
32 lines (30 loc) · 705 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
#include <bits/stdc++.h>
using namespace std;
int main() {
int t;
cin >> t;
while(t--) {
string str;
cin >> str;
int len = str.size();
if(len % 2 != 0) {
cout << -1 << endl;
}
else {
int sum = 0;
int arr[26] = {0};
for(int i = 0; i < len/2; i++) {
arr[str[i] - 'a']++;
}
for(int i = len/2; i < len; i++) {
arr[str[i] - 'a']--;
}
for(int i = 0; i < 26; i++) {
if(arr[i] > 0)
sum += arr[i];
}
cout << sum << endl;
}
}
return 0;
}