← Back to List

10807번: 개수 세기 ↗

Solutions

Python 3
82 B | 82 chars
a=input()
b=list(map(int,input().split(" ")))
c=input()
c=int(c)
print(b.count(c))