📌 [Programmers] 모음사전
📖 문제
📖 예제
📖 풀이
def solution(word):
from itertools import product
words = []
for i in range(6):
c = product(['A', 'E', 'I', 'O', 'U'], repeat=i)
for i in c:
words.append(''.join(i))
words.sort()
return words.index(word)
product() 함수를 활용하여 문제를 해결할 수 있다.