We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f8c64b commit 6d615d9Copy full SHA for 6d615d9
1 file changed
14/3.py
@@ -2,6 +2,7 @@ def solution(N, stages):
2
answer = []
3
length = len(stages)
4
5
+ # 스테이지 번호를 1부터 N까지 증가시키며
6
for i in range(1, N + 1):
7
# 해당 스테이지에 머물러 있는 사람의 수 계산
8
count = stages.count(i)
0 commit comments