Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- leetcode
- github
- Baekjoon
- Kaggle
- dacon
- 편스토랑
- 편스토랑 우승상품
- 자연어처리
- PYTHON
- 더현대서울 맛집
- gs25
- ChatGPT
- 캐치카페
- 코로나19
- 파이썬
- Real or Not? NLP with Disaster Tweets
- 프로그래머스
- ubuntu
- AI 경진대회
- 우분투
- programmers
- 금융문자분석경진대회
- hackerrank
- SW Expert Academy
- 데이콘
- Docker
- Git
- 백준
- 프로그래머스 파이썬
- 맥북
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 10807번 : 개수 세기 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 백준의 개수 세기 입니다.
👨🏻💻 문제풀이 1
방법 1 : collections 의 Counter 를 활용하여 풀기
numbers 를 collections 의 Counter를 활용하여 list 속 각 값들이 몇 개 씩 들어있는지 카운팅
-> 위의 과정을 거치고 나면 각 숫자별로 몇 개씩 있는지 Dictionary 형태로 나옴
만약 입력 받은 v 가 해당 Dictionary 에 키로 있는 값이면 카운팅한 값을
없다면 0을 정답으로 함
👨🏻💻 코드 ( Solution )
from collections import Counter
def counting_number(numbers, v):
answer = 0
cnt = Counter(numbers)
if v in cnt:
answer = cnt[v]
return answer
if __name__ == "__main__":
N = int(input())
numbers = list(map(int, input().split()))
v = int(input())
print(counting_number(numbers, v))
방법 2 : List 의 숫자를 하나씩 비교하여 풀기
list Comprehension 을 활용하여 값을 돌면서 값 == v 인 것만 있는 새로운 리스트 생성
해당리스트의 값을 정답으로 함
👨🏻💻 코드 ( Solution )
def counting_number(numbers, v):
ans_list = [num for num in numbers if num == v]
return len(ans_list)
if __name__ == "__main__":
N = int(input())
numbers = list(map(int, input().split()))
v = int(input())
print(counting_number(numbers, v))
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 4659번 : 비밀번호 발음하기 (Python) (0) | 2022.06.09 |
---|---|
[BaekJoon] 1193번 : 분수찾기 (Python) (0) | 2022.06.07 |
[BaekJoon] 23037번 : 5의 수난 (Python) (0) | 2022.06.05 |
[BaekJoon] 16468번 : 운동장 한 바퀴 (Python) (0) | 2022.06.04 |
[BaekJoon] 14652번 : 나는 행복합니다~ (Python) (0) | 2022.06.03 |
Comments