You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// John works at a clothing store.He has a large pile of socks that he must pair by color for sale.Given an array of integers representing the color of each sock, determine how many pairs of socks with matching colors there are.
// For example, there are
// socks with colors.There is one pair of color and one of color.There are three odd socks left, one of each color.The number of pairs is
// .
// Function Description
// Complete the sockMerchant function in the editor below.It must return an integer representing the number of matching pairs of socks that are available.