// Complete the C++ function to determine if two strings areanagrams of each other.
// Two strings are anagrams if they have the same lettersregardless of order.
#include <unordered_map>
#include <string>
using namespace std;
bool anagrams(string str1, string str2) {
// Code goes here
}
Expert Answer
An answer will be send to you shortly. . . . .