Home [Python] 코드업 6092 : 이상한 출석 번호 부르기1
Post
Cancel

[Python] 코드업 6092 : 이상한 출석 번호 부르기1

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문으로 확인해가며 요소를 바꿔주면 될 것이다.

This post is licensed under CC BY 4.0 by the author.

[Python] 코드업 6091 : 함께 문제 푸는 날

[Python] 코드업 6095 : 바둑판에 흰 돌 놓기