-Code
cnt_dict = {}
for _ in range(int(input())):
n = int(input())
if n not in cnt_dict:
cnt_dict[n] = 1
else:
cnt_dict[n] += 1
print(max(cnt_dict.values()))
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 25773번 Number Maximization (0) | 2023.06.29 |
---|---|
[백준/파이썬] 16786번 すごろくと駒 (Sugoroku and Pieces) (0) | 2023.06.28 |
[백준/파이썬] 16032번 Income Inequality (0) | 2023.06.26 |
[백준/파이썬] 24080번 복잡한 문자열 (Complex String) (0) | 2023.06.25 |
[백준/파이썬] 22016번 巻物 (Scroll) (0) | 2023.06.24 |