10797. 10부제
solution 1 : 92ms
# Counter를 통해 날짜와 일치하는 차량 개수를 셈
from collections import Counter
n,L = input(), input().split()
D = Counter(L)
print(D[n])
solution 2 : 72ms
# 단순 반복문
n = input()
L = input().split()
number = 0
for e in L:
if n == e:
number +=1
else:
number += 0
print(number)
solution 3 : 80ms
# list comprehension
d,L = input(), input().split()
ans = [i for i in L if i==d]
print(len(ans))
Author And Source
이 문제에 관하여(10797. 10부제), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@py_code/10797.-10부제저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)