diff --git a/anagram.cpp b/anagram.cpp new file mode 100644 index 0000000..a045466 --- /dev/null +++ b/anagram.cpp @@ -0,0 +1,37 @@ +#include +using namespace std; + + +bool areAnagram(string str1, string str2) +{ + int n1 = str1.length(); + int n2 = str2.length(); + + + + if (n1 != n2) + return false; + + + sort(str1.begin(), str1.end()); + sort(str2.begin(), str2.end()); + + for (int i = 0; i < n1; i++) + if (str1[i] != str2[i]) + return false; + + return true; +} + + +int main() +{ + string str1 = "test"; + string str2 = "ttew"; + if (areAnagram(str1, str2)) + cout << "The two strings are anagram of each other"; + else + cout << "The two strings are not anagram of each other"; + + return 0; +}