Complete the C++ solution
Drag tokens into the blanks
1// hashmap solution, similar to neetcode python implementation2class Solution {3public:4bool isAnagram(string s, string t) {5 if(s.size() != t.size()) return ___;6unordered_map<char, int> smap;7unordered_map<char, int> tmap;8 for(int i = ___; i < s.size(); i++){9smap[s[i]]++;10tmap[t[i]]++;11}12for (auto const& [key, value] : smap) {13 if (value ___ tmap[key]) {14return false;15}16}17return true;18}19};