-
Notifications
You must be signed in to change notification settings - Fork 353
/
Copy pathstring_anagram.cpp
47 lines (42 loc) · 1.09 KB
/
string_anagram.cpp
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
/*
Given two strings a and b consisting of lowercase characters. The task is to check whether two given strings are an
anagram of each other or not. An anagram of a string is another string that contains the same characters, only the
order of characters can be different. For example, “act” and “tac” are an anagram of each other.
*/
#include <iostream>
using namespace std;
int main()
{
int t;
cin >> t;
while (t--)
{
string a, b;
cin >> a >> b;
unsigned long int lena = a.length();
unsigned long int lenb = b.length();
if (lena != lenb)
{
cout << "NO\n";
}
else
{
signed int cnt[26] = {0};
for (int i = 0; i < lena; i++)
{
cnt[a[i] - 'a']++;
}
for (int i = 0; i < lenb; i++)
{
cnt[b[i] - 'a']--;
}
if (count(cnt, cnt + 26, 0) == 26)
{
cout << "YES\n";
}
else
cout << "NO\n";
}
}
return 0;
}