You are viewing a single comment's thread. Return to all comments →
Java
public static int sockMerchant(int n, List<Integer> ar) { int pairs = 0; int size = ar.size(); while(size-- > 0){ int sock = ar.get(0); ar.remove(0); if (ar.contains(sock)){ pairs++; ar.remove(ar.indexOf(sock)); size--; } } return pairs; }
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 →
Java