본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 9913번 Max

by 현장 2023. 6. 27.

-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()))