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
- 파이썬
- Baekjoon
- hackerrank
- 프로그래머스
- ChatGPT
- 백준
- 데이콘
- dacon
- ubuntu
- 맥북
- Git
- 우분투
- programmers
- 금융문자분석경진대회
- 편스토랑
- 편스토랑 우승상품
- 프로그래머스 파이썬
- 코로나19
- 더현대서울 맛집
- Docker
- leetcode
- Kaggle
- PYTHON
- SW Expert Academy
- AI 경진대회
- 자연어처리
- github
- 캐치카페
- gs25
- Real or Not? NLP with Disaster Tweets
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 10987번 : 모음의 개수 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 백준의 모음의 개수입니다.
Solution
from collections import Counter
def count_vowel(string):
vowels = ['a', 'e', 'i', 'o', 'u']
cnt = Counter(string).items()
vowel_cnt = [count[1] for count in cnt if count[0] in vowels]
return sum(vowel_cnt)
if __name__ == "__main__":
string = input()
print(count_vowel(string))
Solution 풀이
collections의 Counter를 활용하여 문제를 풀어보았습니다.
입력 받은 문자열을 Counter를 활용하여 어떠한 알파벳이 몇번씩 나왔는지 구하고
여기서 모음인 것들만 남겨 각 단어의 카운팅한 수를 더하면 끝!
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 2744번 : 대소문자 바꾸기 (Python) (0) | 2021.06.28 |
---|---|
[BaekJoon] 5218번 : 알파벳 거리 (Python) (0) | 2021.06.27 |
[BaekJoon] 6321번 : IBM 빼기 1 (Python) (0) | 2021.06.24 |
[BaekJoon] 13163번 : 닉네임에 갓 붙이기 (Python) (0) | 2021.06.23 |
[BaekJoon] 1990번 : 소수인팰린드롬 (Python) (0) | 2021.06.22 |
Comments