← Back to List

20155번: 우리 집 밑에 편의점이 있는데 ↗

Solutions

Python 3
76 B | 76 chars
input()
l = [*map(int,input().split())]
print(max([l.count(i) for i in l]))