Date = input() CarNumber = input().split(" ") count = 0 for i in CarNumber: if Date == i: count += 1 print(count)
'알고리즘' 카테고리의 다른 글
프로그래머스 - 주식가격 (0) | 2020.03.08 |
---|---|
백준 1260번 - DFS와 BFS (2) | 2020.03.08 |
백준 2606번 -바이러스 (DFS) (0) | 2020.03.08 |
프로그래머스 - 전화번호 목록 (0) | 2020.03.08 |
프로그래머스 Level 2 기능개발 - Python (0) | 2020.02.23 |