You are viewing a single comment's thread. Return to all comments →
C++ Solution:
int sockMerchant(int n, vector<int> ar) { map<int, int> mp; int pair = 0; for(int color : ar){ mp[color]++; if(mp[color]%2 == 0){ pair++; } } return pair; }
Seems like cookies are disabled on this browser, please enable them to open this website
I agree to HackerRank's Terms of Service and Privacy Policy.
Sales by Match
You are viewing a single comment's thread. Return to all comments →
C++ Solution: