from itertools import combinations
l, c = map(int, input().split())
a = sorted(input().split())
for s in combinations(a, l):
pw = []
vowel, consonant = 0, 0
for i in range(len(s)):
if s[i] in 'aeiou':
vowel += 1
else:
consonant += 1
pw += s[i]
if vowel >= 1 and consonant >= 2:
print(*pw)
'코딩테스트 > 백준' 카테고리의 다른 글
백준 2750번 수 정렬하기 python 파이썬 (0) | 2022.10.06 |
---|---|
백준 2581번 소수 python 파이썬 (0) | 2022.10.05 |
백준 10867번 중복 빼고 정렬하기 python 파이썬 (0) | 2022.10.05 |
백준 1181번 단어 정렬 python 파이썬 (0) | 2022.10.05 |
백준 10809번 알파벳 찾기 python 파이썬 (1) | 2022.10.05 |