HackerRank.com2021. 10. 4. 21:57

There is a large pile of socks that must be paired by color. Given an array of integers representing the color of each sock, determine how many pairs of socks with matching colors there are.

Example

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.

sockMerchant has the following parameter(s):

  • int n: the number of socks in the pile
  • int ar[n]: the colors of each sock

Returns

  • int: the number of pairsInput FormatSample Output
  • 3
  • Explanation
  • There are three pairs of socks.
  • Sample Input
  • STDIN Function ----- -------- 9 n = 9 10 20 20 10 10 30 50 10 20 ar = [10, 20, 20, 10, 10, 30, 50, 10, 20]
  • The first line contains an integer , the number of socks represented in .
    The second line contains  space-separated integers, , the colors of the socks in the pile.

 

-- Answer

    public static int sockMerchant(int n, List<int> ar)
    {
        int[] pairsToSell = new int[n];
        int countToSell = 0;
        foreach(int sock in ar) {
            var ind = sock % n;
            pairsToSell[ind] +=1;
            if (pairsToSell[ind] == 2) {
                countToSell++;
                pairsToSell[ind] = 0;
            }
        }
        return countToSell;
    }

'HackerRank.com' 카테고리의 다른 글

Repeated String  (0) 2021.10.04
Jumping on the Clouds  (0) 2021.10.04
Counting Valleys  (0) 2021.10.04
Posted by yuwol