Introfor

HackerRank - Sales by Match 본문

Doing/Python

HackerRank - Sales by Match

YongArtist 2020. 10. 20. 00:04
 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/python3
 
import math
import os
import random
import re
import sys
 
# Complete the sockMerchant function below.
def sockMerchant(n, ar):
    res = 0
    for i in set(ar):
        res += ar.count(i) // 2
    return res
 
if __name__ == '__main__':
    fptr = open(os.environ['OUTPUT_PATH'], 'w')
 
    n = int(input())
 
    ar = list(map(int, input().rstrip().split()))
 
    result = sockMerchant(n, ar)
 
    fptr.write(str(result) + '\n')
 
    fptr.close()
cs
Comments