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
- 프로그래머스
- ChatGPT
- leetcode
- 더현대서울 맛집
- SW Expert Academy
- 파이썬
- 맥북
- Git
- Kaggle
- dacon
- 프로그래머스 파이썬
- 편스토랑 우승상품
- AI 경진대회
- gs25
- programmers
- Real or Not? NLP with Disaster Tweets
- Baekjoon
- ubuntu
- 데이콘
- 우분투
- 편스토랑
- Docker
- 금융문자분석경진대회
- 백준
- github
- 코로나19
- PYTHON
- 캐치카페
- hackerrank
- 자연어처리
Archives
- Today
- Total
솜씨좋은장씨
[Programmers] 위클리 챌린지 5주차 - 모음사전 (Python) 본문
728x90
반응형
코딩 1일 1문제! 즐거운 대체공휴일인 오늘!
오늘의 문제는 프로그래머스의 위클리 챌린지 5주차 문제인 모음사전입니다.
👨🏻💻 코드 풀이
이 문제는 모음 ( A, E, I, O, U ) 로 이루어진 A ~ UUUUU 사이의 단어가
몇번째 단어인지를 맞추는 문제입니다.
저는 곱집합을 만들어주는 itertools의 product를 활용하여 문제를 풀었습니다.
itertools의 product는 아래의 글을 참고해주세요.
vowels = 'AEIOU'
product로 곱집합을 만들 기준이되는 모음을 활용하여 문자열을 하나 만들어주고
vowels1 = list(vowels)
vowels2 = [''.join(word) for word in list(product(vowels, repeat=2))]
vowels3 = [''.join(word) for word in list(product(vowels, repeat=3))]
vowels4 = [''.join(word) for word in list(product(vowels, repeat=4))]
vowels5 = [''.join(word) for word in list(product(vowels, repeat=5))]
1개로 이루어진 단어부터 5개로 이루어진 단어를 모두 만들어준 뒤
vowel_dict = vowels1 + vowels2 + vowels3 + vowels4 + vowels5
vowel_dict.sort()
모든 단어를 vowel_dict에 모아주고 이를 사전순으로 정렬합니다.
vowel_dict.index(word) + 1
마지막으로 vowel_dict 안에서 어떠한 단어가 몇 번째 단어인지를 index 함수를 활용해 구합니다.
index 함수를 통해 나오는 값은 0 부터 시작하므로 나오는 값에 1을 더해주면 몇 번째 단어인지 알 수 있습니다.
전체 코드는 아래를 참고해주세요.
👨🏻💻 코드 ( Solution )
from itertools import product
def solution(word):
vowels = 'AEIOU'
vowels1 = list(vowels)
vowels2 = [''.join(word) for word in list(product(vowels, repeat=2))]
vowels3 = [''.join(word) for word in list(product(vowels, repeat=3))]
vowels4 = [''.join(word) for word in list(product(vowels, repeat=4))]
vowels5 = [''.join(word) for word in list(product(vowels, repeat=5))]
vowel_dict = vowels1 + vowels2 + vowels3 + vowels4 + vowels5
vowel_dict.sort()
return vowel_dict.index(word) + 1
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 2576번 : 홀수 (Python) (0) | 2021.10.06 |
---|---|
[BaekJoon] 1330번 : 두 수 비교하기 (Python) (0) | 2021.10.05 |
[BaekJoon] 1977번 : 완전제곱수 (Python) (0) | 2021.10.03 |
[BaekJoon] 9093번 : 단어 뒤집기 (Python) (0) | 2021.10.02 |
[Programmers] 위클리 챌린지 8주차 - 최소직사각형 (Python) (0) | 2021.10.01 |
Comments