Problem
https://codeup.kr/problem.php?id=6092
Solution
1
2
3
4
5
n = int(input())
num = list(map(int,input().split()))
for i in range(1, 24):
print(num.count(i), end=' ')
Memo
count 메서드를 사용하지 않고 문제를 해결하려면 빈 리스트를 만들고 새로운 for문으로 확인해가며 요소를 바꿔주면 될 것이다.