| 19 | } |
| 20 | |
| 21 | int main() |
| 22 | { |
| 23 | string str1; |
| 24 | string str2; |
| 25 | cin>>str1>>str2; |
| 26 | |
| 27 | |
| 28 | if (areAnagram(str1, str2)) |
| 29 | cout << "The two strings are anagram of each other"; |
| 30 | else |
| 31 | cout << "The two strings are not anagram of each " |
| 32 | "other"; |
| 33 | |
| 34 | return 0; |
| 35 | } |
nothing calls this directly
no test coverage detected